From: Marcus Boerger Date: Thu, 10 Jun 2004 11:40:34 +0000 (+0000) Subject: Do not require NEWLINE at start of doccomment X-Git-Tag: php-5.0.0~235 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eefdd0ea495846c172e127f4aec733439a54f464;p=php Do not require NEWLINE at start of doccomment --- diff --git a/Zend/zend_language_scanner.l b/Zend/zend_language_scanner.l index c3024d6d25..8ea022e0ba 100644 --- a/Zend/zend_language_scanner.l +++ b/Zend/zend_language_scanner.l @@ -1445,7 +1445,7 @@ NEWLINE ("\r"|"\n"|"\r\n") } } -"/**"{NEWLINE} { +"/**" { CG(comment_start_line) = CG(zend_lineno); BEGIN(ST_DOC_COMMENT); yymore();