diff --git a/cg/cg2102.cpp b/cg/cg2102.cpp index 5eb493f63..48ac5866a 100755 --- a/cg/cg2102.cpp +++ b/cg/cg2102.cpp @@ -25,11 +25,11 @@ char TPrimanota_application::row_type(const TToken_string& s) { char t = ' '; - if (s.full()) + if (s.full() && s.items() >= CG_ROWTYPE - 100) { t = s[s.len()-1]; if (t < 'A' || t > 'Z') - t = ' '; + t = ' '; } return t; }