# HG changeset patch # User Romain Francoise # Date 1163011618 0 # Node ID b3f1247fc5c694c73df6df2778db9dc861d90f3c # Parent 3e5a1c03f61a03cefec667519a50c2a572b519c7 (remove-overlays): Fix typo in last change. diff -r 3e5a1c03f61a -r b3f1247fc5c6 lisp/ChangeLog --- 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 + + * subr.el (remove-overlays): Fix typo in last change. + 2006-11-08 Richard Stallman * subr.el (remove-overlays): Call overlay-recenter. diff -r 3e5a1c03f61a -r b3f1247fc5c6 lisp/subr.el --- 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)