mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 12:21: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
|
|
@ -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…
Add table
Add a link
Reference in a new issue