We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47e0813 commit 4359c6cCopy full SHA for 4359c6c
1 file changed
lisp/php-mode.el
@@ -591,6 +591,15 @@ PHP does not have an C-like \"enum\" keyword."
591
(c-lang-defconst c-enums-contain-decls
592
php nil)
593
594
+(c-lang-defconst c-paragraph-start
595
+ php (eval-when-compile
596
+ (rx (group (or (: "@" (in "a-zA-Z" "\\") word-end)
597
+ (: "#[")
598
+ eol)))))
599
+
600
+(c-lang-defconst c-other-decl-kwds
601
+ php nil)
602
603
(c-lang-defconst c-nonlabel-token-key
604
"Regexp matching things that can't occur in generic colon labels.
605
0 commit comments