1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-15 09:47:20 +00:00

(remove-overlays): Fix typo in last change.

This commit is contained in:
Romain Francoise 2006-11-08 18:46:58 +00:00
parent d6f5ac1084
commit 2403b96c68
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-11-08 Romain Francoise <romain@orebokech.com>
* subr.el (remove-overlays): Fix typo in last change.
2006-11-08 Richard Stallman <rms@gnu.org>
* subr.el (remove-overlays): Call overlay-recenter.

View File

@ -1961,7 +1961,7 @@ If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there."
Overlays might be moved and/or split.
BEG and END default respectively to the beginning and end of buffer."
;; This speeds up the loops over overlays.
(overlay-recented (point-max))
(overlay-recenter (point-max))
(unless beg (setq beg (point-min)))
(unless end (setq end (point-max)))
(if (< end beg)