]> granicus.if.org Git - php/commitdiff
That's slightly clearer that way :)
authorZeev Suraski <zeev@php.net>
Thu, 17 May 2001 16:33:45 +0000 (16:33 +0000)
committerZeev Suraski <zeev@php.net>
Thu, 17 May 2001 16:33:45 +0000 (16:33 +0000)
Zend/zend_language_scanner.l

index d060081cbdfc60a92229c52cb4db77d2707d95ca..77d767878a792ebd9c284e33419f1da5e9d5547c 100644 (file)
@@ -1088,8 +1088,7 @@ NEWLINE ("\r"|"\n"|"\r\n")
 
 
 <INITIAL>"<%="|"<?=" {
-       if ((yytext[1]=='%' && CG(asp_tags))
-               || (yytext[1]=='?' && CG(short_tags))) {
+       if ((yytext[1]=='%' && CG(asp_tags)) || (yytext[1]=='?' && CG(short_tags))) {
                zendlval->value.str.val = yytext; /* no copying - intentional */
                zendlval->value.str.len = yyleng;
                zendlval->type = IS_STRING;