diff --git a/uppsrc/Core/parser.cpp b/uppsrc/Core/parser.cpp index 47e94f8dd..bddf83683 100644 --- a/uppsrc/Core/parser.cpp +++ b/uppsrc/Core/parser.cpp @@ -370,7 +370,7 @@ String CParser::ReadOneString(int delim, bool chkend) throw(Error) { } } else { - if((byte)*term < ' ') { + if((byte)*term < ' ' && *term != '\t') { if(chkend) { ThrowError("Unterminated string"); return result;