From: Andi Gutmans Date: Fri, 30 Apr 1999 17:35:38 +0000 (+0000) Subject: - Move back to yyless(). I haven't tested it yet because it's taking too long X-Git-Tag: BEFORE_PHP4_APACHE_MODULE_CHANGE~120 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91371c4340d2585fb08eafe6e152be23f680640b;p=php - Move back to yyless(). I haven't tested it yet because it's taking too long to compile and I have to disconnect --- diff --git a/Zend/zend-scanner.l b/Zend/zend-scanner.l index ef494bb59e..57535e51ac 100644 --- a/Zend/zend-scanner.l +++ b/Zend/zend-scanner.l @@ -637,7 +637,7 @@ ESCAPED_AND_WHITESPACE [\n\t\r #'.:;,()|^&+-/*=%!~<>?@]+ . { /*unput(yytext[0]);*/ - yyless(1); + yyless(0); yy_pop_state(); } @@ -848,8 +848,8 @@ ESCAPED_AND_WHITESPACE [\n\t\r #'.:;,()|^&+-/*=%!~<>?@]+ . { - /*yyless(1);*/ - unput(yytext[0]); + /*unput(yytext[0]);*/ + yyless(0); yy_pop_state(); yy_push_state(IN_SCRIPTING); }