]> git.eshelyaron.com Git - emacs.git/commitdiff
Make diff--refine-hunk bug out less on broken patches
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 13 Sep 2020 15:25:08 +0000 (17:25 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 13 Sep 2020 15:25:08 +0000 (17:25 +0200)
* lisp/vc/diff-mode.el (diff--refine-hunk): Don't bug out on
broken patches where we can't find the middle.

lisp/vc/diff-mode.el

index 1a80d13abde404167a139f949ad71be8a115fb7d..f223ae48f3b7e4d9ec292905bb2fe61ccb7f4232 100644 (file)
@@ -2173,9 +2173,10 @@ Return new point, if it was moved."
              (smerge-refine-regions beg-del beg-add beg-add end-add
                                     nil #'diff-refine-preproc props-r props-a)))))
       ('context
-       (let* ((middle (save-excursion (re-search-forward "^---" end)))
+       (let* ((middle (save-excursion (re-search-forward "^---" end t)))
               (other middle))
-         (while (re-search-forward "^\\(?:!.*\n\\)+" middle t)
+         (while (and middle
+                    (re-search-forward "^\\(?:!.*\n\\)+" middle t))
            (smerge-refine-regions (match-beginning 0) (match-end 0)
                                   (save-excursion
                                     (goto-char other)