mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-23 14:22:41 -06:00
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:
parent
d877599274
commit
b2bed3b9aa
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue