aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2002-05-01 15:08:25 +0000
committerEli Zaretskii2002-05-01 15:08:25 +0000
commitacd39eb62f82ce0516141deab2566fecb23c42af (patch)
tree770971684b1df04f426409095a77fff50846a168
parent1d8a11093f95a0cfe3ae4ee9da9937c86fc70beb (diff)
downloademacs-acd39eb62f82ce0516141deab2566fecb23c42af.tar.gz
emacs-acd39eb62f82ce0516141deab2566fecb23c42af.zip
(clone-indirect-buffer-other-window): Fix a typo in `pop-up-window'.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/simple.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 61ac27b50fa..83876bf81c3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12002-05-01 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * simple.el (clone-indirect-buffer-other-window): Fix a typo in
4 pop-up-window.
5
12002-05-01 Kim F. Storm <storm@cua.dk> 62002-05-01 Kim F. Storm <storm@cua.dk>
2 7
3 * emulation/cua-base.el (cua--pre-command-handler): Only 8 * emulation/cua-base.el (cua--pre-command-handler): Only
diff --git a/lisp/simple.el b/lisp/simple.el
index ce19c413482..9edb9a53727 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -4140,7 +4140,7 @@ Select the new buffer in another window.
4140Optional second arg NORECORD non-nil means do not put this buffer at 4140Optional second arg NORECORD non-nil means do not put this buffer at
4141the front of the list of recently selected ones." 4141the front of the list of recently selected ones."
4142 (interactive "bClone buffer in other window: ") 4142 (interactive "bClone buffer in other window: ")
4143 (let ((popup-windows t)) 4143 (let ((pop-up-windows t))
4144 (set-buffer buffer) 4144 (set-buffer buffer)
4145 (clone-indirect-buffer nil t norecord))) 4145 (clone-indirect-buffer nil t norecord)))
4146 4146