From: foobar Date: Tue, 1 Mar 2005 02:17:41 +0000 (+0000) Subject: Fix the fix for one line comments with tags X-Git-Tag: RELEASE_0_3~119 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=143d62a179067f8c573122516f67381e5a37cfe8;p=php Fix the fix for one line comments with tags --- diff --git a/Zend/zend_language_scanner.l b/Zend/zend_language_scanner.l index f0b624a58d..694ef11704 100644 --- a/Zend/zend_language_scanner.l +++ b/Zend/zend_language_scanner.l @@ -1454,6 +1454,7 @@ NEWLINE ("\r"|"\n"|"\r\n") zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; + yyless(yyleng-9); BEGIN(ST_IN_SCRIPTING); return T_COMMENT; }