We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5598dd3 + 40ef9f6 commit 0b63d2dCopy full SHA for 0b63d2d
php-mode.el
@@ -485,9 +485,11 @@ SYMBOL
485
php nil)
486
487
(c-lang-defconst c-before-font-lock-functions
488
- php (if (fboundp #'c-depropertize-new-text)
489
- '(c-depropertize-new-text)
490
- nil))
+ php (let (functions)
+ (when (fboundp #'c-change-expand-fl-region)
+ (cl-pushnew 'c-change-expand-fl-region functions))
491
+ (when (fboundp #'c-depropertize-new-text)
492
+ (cl-pushnew 'c-depropertize-new-text functions))))
493
494
;; Make php-mode recognize opening tags as preprocessor macro's.
495
;;
0 commit comments