Core: CParser now allows tabs in String

git-svn-id: svn://ultimatepp.org/upp/trunk@8145 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2015-02-07 14:53:10 +00:00
parent d877599274
commit b2bed3b9aa

View file

@ -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;