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.
1 parent bec22bf commit d5b04d8Copy full SHA for d5b04d8
php-mode.el
@@ -1089,7 +1089,10 @@ After setting the stylevars run hooks according to STYLENAME
1089
(when (>= emacs-major-version 25)
1090
(with-silent-modifications
1091
(save-excursion
1092
- (php-syntax-propertize-function (point-min) (point-max))))))
+ (let* ((start (point-min))
1093
+ (end (min (point-max)
1094
+ (+ start syntax-propertize-chunk-size))))
1095
+ (php-syntax-propertize-function start end))))))
1096
1097
(declare-function semantic-create-imenu-index "semantic/imenu" (&optional stream))
1098
0 commit comments