We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 061a794 commit 805f500Copy full SHA for 805f500
lisp/php-mode.el
@@ -576,7 +576,8 @@ might be to handle switch and goto labels differently."
576
:test 'string-equal))))
577
578
(c-lang-defconst c-basic-matchers-before
579
- php (cl-remove-if (lambda (elm) (and (listp elm) (equal (car elm) "\\s|")))
+ php (cl-remove-if (lambda (elm) (or (and (consp elm) (equal (car elm) "\\s|"))
580
+ (functionp elm)))
581
(c-lang-const c-basic-matchers-before php)))
582
583
(c-lang-defconst c-basic-matchers-after
0 commit comments