+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.
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)