Drop CR in string tokens in the Lisp parser
authorchrism <chrism@example.org>
Tue, 26 Sep 2006 12:51:40 +0000 (12:51 +0000)
committerchrism <chrism@example.org>
Tue, 26 Sep 2006 12:51:40 +0000 (12:51 +0000)
SVN-Revision: 4279

src/lisp/lexer.cpp

index de3243e..9b4220b 100644 (file)
@@ -109,6 +109,8 @@ Lexer::getNextToken()
             nextChar();
             if(*c == '"')
               break;
+            else if (*c == '\r') // XXX this breaks with pure \r EOL
+              continue;
             else if(*c == '\n')
               linenumber++;
             else if(*c == '\\') {