s = s.substr(1, s.size() - 2);
for(size_t i=0; i<s.size(); i++) {
if((unsigned)s[i] > 127 && !isprint(s[i])) {
- PARSER_STATE->parseError("Extended/unprintable characters are not part of SMT-LIB, and they must be encoded as esacped sequences");
+ PARSER_STATE->parseError("Extended/unprintable characters are not part of SMT-LIB, and they must be encoded as escape sequences");
}
}
if(fsmtlib) {
s = s.substr(1, s.size() - 2);
for(size_t i=0; i<s.size(); i++) {
if((unsigned)s[i] > 127 && !isprint(s[i])) {
- PARSER_STATE->parseError("Extended/unprintable characters are not part of SMT-LIB, and they must be encoded as esacped sequences");
+ PARSER_STATE->parseError("Extended/unprintable characters are not part of SMT-LIB, and they must be encoded as escape sequences");
}
}
// In the 2.5 version, always handle escapes (regardless of fsmtlib flag).