mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-28 10:56:36 +00:00
(diff-hunk-kill): Fix the search of the next hunk (bug#4368).
This commit is contained in:
parent
5cc79e5aff
commit
cd8752523c
@ -1,3 +1,8 @@
|
||||
2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
|
||||
(bug#4368).
|
||||
|
||||
2009-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
|
||||
|
||||
* calendar/time-date.el (autoload):
|
||||
|
@ -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…
Reference in New Issue
Block a user