Skip to content

Commit e64e1fe

Browse files
author
Phil Sainty
committed
Improve php-syntax-propertize-extend-region efficiency
If the first pair of searches found a heredoc which spanned the entire region, don't perform the second pair of searches, as we already know the new region bounds. If we do need the second pair of searches, bound the backwards search at the original region START position.
1 parent e3087db commit e64e1fe

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

lisp/php-mode.el

+13-6
Original file line numberDiff line numberDiff line change
@@ -1038,17 +1038,24 @@ HEREDOC-START."
10381038
(unwind-protect
10391039
(let (new-start new-end)
10401040
(goto-char start)
1041+
;; Consider bounding this backwards search by `beginning-of-defun'.
1042+
;; (Benchmarking for a wide range of cases may be needed to decide
1043+
;; whether that's an improvement, as `php-beginning-of-defun' also
1044+
;; uses `re-search-backward'.)
10411045
(when (re-search-backward php-heredoc-start-re nil t)
10421046
(let ((maybe (point)))
10431047
(when (and (re-search-forward (php-heredoc-end-re (match-string 0)) nil t)
10441048
(> (point) start))
1045-
(setq new-start maybe))))
1046-
(goto-char end)
1047-
(when (re-search-backward php-heredoc-start-re nil t)
1048-
(if (re-search-forward (php-heredoc-end-re (match-string 0)) nil t)
1049+
(setq new-start maybe)
10491050
(when (> (point) end)
1050-
(setq new-end (point)))
1051-
(setq new-end (point-max))))
1051+
(setq new-end (point))))))
1052+
(unless new-end
1053+
(goto-char end)
1054+
(when (re-search-backward php-heredoc-start-re start t)
1055+
(if (re-search-forward (php-heredoc-end-re (match-string 0)) nil t)
1056+
(when (> (point) end)
1057+
(setq new-end (point)))
1058+
(setq new-end (point-max)))))
10521059
(when (or new-start new-end)
10531060
(cons (or new-start start) (or new-end end))))
10541061
;; Cleanup

0 commit comments

Comments
 (0)