mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(diff-hunk-kill): Fix the search of the next hunk (bug#4368).
This commit is contained in:
parent
5cc79e5aff
commit
cd8752523c
2 changed files with 7 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue