From 91371c4340d2585fb08eafe6e152be23f680640b Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Fri, 30 Apr 1999 17:35:38 +0000 Subject: [PATCH] - Move back to yyless(). I haven't tested it yet because it's taking too long to compile and I have to disconnect --- Zend/zend-scanner.l | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } -- 2.50.1