diff options
author | Andi Gutmans <andi@php.net> | 1999-04-30 17:35:38 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 1999-04-30 17:35:38 +0000 |
commit | 91371c4340d2585fb08eafe6e152be23f680640b (patch) | |
tree | a90e092b1e612e6009b6c7964969016195ec8e03 | |
parent | 9dd66bc2aef5a38ab8a661d8ba20d2a249fec81a (diff) | |
download | php-git-91371c4340d2585fb08eafe6e152be23f680640b.tar.gz |
- Move back to yyless(). I haven't tested it yet because it's taking too long
to compile and I have to disconnect
-rw-r--r-- | Zend/zend-scanner.l | 6 |
1 files 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 #'.:;,()|^&+-/*=%!~<>?@]+ <LOOKING_FOR_PROPERTY>. { /*unput(yytext[0]);*/ - yyless(1); + yyless(0); yy_pop_state(); } @@ -848,8 +848,8 @@ ESCAPED_AND_WHITESPACE [\n\t\r #'.:;,()|^&+-/*=%!~<>?@]+ <LOOKING_FOR_VARNAME>. { - /*yyless(1);*/ - unput(yytext[0]); + /*unput(yytext[0]);*/ + yyless(0); yy_pop_state(); yy_push_state(IN_SCRIPTING); } |