diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2010-02-11 14:37:11 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2010-02-11 14:37:11 -0500 |
commit | 28f0b0721d9fb54f713ba518d4fa94dfa565ee1b (patch) | |
tree | 0c78fc916c42baf059c2fffd104b017f7b0652aa /lisp | |
parent | 48b1e7cf2bf6bf70340c49aaac393176bf3d7aaf (diff) | |
download | emacs-28f0b0721d9fb54f713ba518d4fa94dfa565ee1b.tar.gz |
(copy-overlay): Damn typo.
Diffstat (limited to 'lisp')
-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 3b5d977c1f8..d2363099b7c 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -2239,7 +2239,7 @@ If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there." (overlay-buffer o)) (let ((o1 (make-overlay (point-min) (point-min)))) (delete-overlay o1) - o1)))) + o1))) (props (overlay-properties o))) (while props (overlay-put o1 (pop props) (pop props))) |