Mercurial > emacs
changeset 73831:b3f1247fc5c6
(remove-overlays): Fix typo in last change.
author | Romain Francoise <romain@orebokech.com> |
---|---|
date | Wed, 08 Nov 2006 18:46:58 +0000 |
parents | 3e5a1c03f61a |
children | adc185200028 |
files | lisp/ChangeLog lisp/subr.el |
diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Wed Nov 08 17:31:46 2006 +0000 +++ b/lisp/ChangeLog Wed Nov 08 18:46:58 2006 +0000 @@ -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.
--- a/lisp/subr.el Wed Nov 08 17:31:46 2006 +0000 +++ b/lisp/subr.el Wed Nov 08 18:46:58 2006 +0000 @@ -1961,7 +1961,7 @@ 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)