Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions lisp/php-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -591,6 +591,15 @@ PHP does not have an C-like \"enum\" keyword."
(c-lang-defconst c-enums-contain-decls
php nil)

(c-lang-defconst c-paragraph-start
php (eval-when-compile
(rx (group (or (: "@" (in "a-zA-Z" "\\") word-end)
(: "#[")
eol)))))

(c-lang-defconst c-other-decl-kwds
php nil)

(c-lang-defconst c-nonlabel-token-key
"Regexp matching things that can't occur in generic colon labels.

Expand Down