summaryrefslogtreecommitdiff
path: root/lisp/diff-mode.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2009-09-09 14:47:54 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2009-09-09 14:47:54 +0000
commitcd8752523c8e4e2fe3655c2e81edd133fb8c1947 (patch)
tree363e2aae383fd7425df8412b45f3a04c405f91e4 /lisp/diff-mode.el
parent5cc79e5aff4952b45c8712232565f577ff550eba (diff)
downloademacs-cd8752523c8e4e2fe3655c2e81edd133fb8c1947.tar.gz
(diff-hunk-kill): Fix the search of the next hunk (bug#4368).
Diffstat (limited to 'lisp/diff-mode.el')
-rw-r--r--lisp/diff-mode.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/diff-mode.el b/lisp/diff-mode.el
index 56bcde521ac..93a8a418806 100644
--- a/lisp/diff-mode.el
+++ b/lisp/diff-mode.el
@@ -546,7 +546,8 @@ If the prefix ARG is given, restrict the view to the current file instead."
(interactive)
(diff-beginning-of-hunk)
(let* ((start (point))
- (nexthunk (when (re-search-forward diff-hunk-header-re nil t)
+ ;; Search the second match, since we're looking at the first.
+ (nexthunk (when (re-search-forward diff-hunk-header-re nil t 2)
(match-beginning 0)))
(firsthunk (ignore-errors
(goto-char start)