Browse Source

Do not require NEWLINE at start of doccomment

PHP-5.0
Marcus Boerger 22 years ago
parent
commit
eefdd0ea49
  1. 2
      Zend/zend_language_scanner.l

2
Zend/zend_language_scanner.l

@ -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();

Loading…
Cancel
Save