From b2bed3b9aaada2d4bbbeadac7b0632650e674e92 Mon Sep 17 00:00:00 2001 From: cxl Date: Sat, 7 Feb 2015 14:53:10 +0000 Subject: [PATCH] Core: CParser now allows tabs in String git-svn-id: svn://ultimatepp.org/upp/trunk@8145 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;