]> git.eshelyaron.com Git - emacs.git/commitdiff
(remove-overlays): Fix typo in last change.
authorRomain Francoise <romain@orebokech.com>
Wed, 8 Nov 2006 18:46:58 +0000 (18:46 +0000)
committerRomain Francoise <romain@orebokech.com>
Wed, 8 Nov 2006 18:46:58 +0000 (18:46 +0000)
lisp/ChangeLog
lisp/subr.el

index c64546ee6cc0fc45b8b223c5feef202f124d7988..b4a2d67632567654bfaf5667189d61e2f6933a5b 100644 (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.
index 3fcdaaab7530c9ba079c9a3b10479de294514228..4748b4d8dcb8bad6739682dbad7cd4fbc4a6b940 100644 (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)