We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 010d0f6 commit 5c06130Copy full SHA for 5c06130
1 file changed
lisp/php-mode.el
@@ -550,6 +550,15 @@ PHP does not have an C-like \"enum\" keyword."
550
(c-lang-defconst c-enums-contain-decls
551
php nil)
552
553
+(c-lang-defconst c-paragraph-start
554
+ php (eval-when-compile
555
+ (rx (group (or (: "@" (in "a-zA-Z" "\\") word-end)
556
+ (: "#[")
557
+ eol)))))
558
+
559
+(c-lang-defconst c-other-decl-kwds
560
+ php nil)
561
562
(c-lang-defconst c-nonlabel-token-key
563
"Regexp matching things that can't occur in generic colon labels.
564
0 commit comments