aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRomain Francoise <[email protected]>2006-11-08 18:46:58 +0000
committerRomain Francoise <[email protected]>2006-11-08 18:46:58 +0000
commit2403b96c68176579213c7a865515bb243bab1647 (patch)
treec56ef7119865505a06481b3eedc37fed65d062e9 /lisp
parentd6f5ac1084e4223c88bf060d7e7033ee0d49b008 (diff)
(remove-overlays): Fix typo in last change.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/subr.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c64546ee6c..b4a2d67632 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-08 Romain Francoise <[email protected]>
+
+ * subr.el (remove-overlays): Fix typo in last change.
+
2006-11-08 Richard Stallman <[email protected]>
* subr.el (remove-overlays): Call overlay-recenter.
diff --git a/lisp/subr.el b/lisp/subr.el
index 3fcdaaab75..4748b4d8dc 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)