From: Romain Francoise Date: Wed, 8 Nov 2006 18:46:58 +0000 (+0000) Subject: (remove-overlays): Fix typo in last change. X-Git-Tag: emacs-pretest-22.0.91~210 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2403b96c68176579213c7a865515bb243bab1647;p=emacs.git (remove-overlays): Fix typo in last change. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c64546ee6cc..b4a2d676325 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2006-11-08 Romain Francoise + + * subr.el (remove-overlays): Fix typo in last change. + 2006-11-08 Richard Stallman * subr.el (remove-overlays): Call overlay-recenter. diff --git a/lisp/subr.el b/lisp/subr.el index 3fcdaaab753..4748b4d8dcb 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -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)