]> granicus.if.org Git - php/commitdiff
Do not require NEWLINE at start of doccomment
authorMarcus Boerger <helly@php.net>
Thu, 10 Jun 2004 11:40:34 +0000 (11:40 +0000)
committerMarcus Boerger <helly@php.net>
Thu, 10 Jun 2004 11:40:34 +0000 (11:40 +0000)
Zend/zend_language_scanner.l

index c3024d6d254b66e57d05fe5a86394bb1bbd373ea..8ea022e0ba109b336ad2bf0d64849b668575d544 100644 (file)
@@ -1445,7 +1445,7 @@ NEWLINE ("\r"|"\n"|"\r\n")
        }
 }
 
-<ST_IN_SCRIPTING>"/**"{NEWLINE} {
+<ST_IN_SCRIPTING>"/**" {
        CG(comment_start_line) = CG(zend_lineno);
        BEGIN(ST_DOC_COMMENT);
        yymore();