diff options
author | Romain Francoise <romain@orebokech.com> | 2006-11-08 18:46:58 +0000 |
---|---|---|
committer | Romain Francoise <romain@orebokech.com> | 2006-11-08 18:46:58 +0000 |
commit | 4358777a28fb99eceeb826029fc1e8847b936440 (patch) | |
tree | 27cbb18ddbf02ccb7cc8249c3a3e6291c90bab78 /lisp/subr.el | |
parent | 02d8b6fb477f646547811202d94c66bb881b42f9 (diff) | |
download | emacs-4358777a28fb99eceeb826029fc1e8847b936440.tar.gz |
(remove-overlays): Fix typo in last change.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 3fcdaaab753..4748b4d8dcb 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) |