We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bec22bf + d5b04d8 commit 6a269f5Copy full SHA for 6a269f5
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