1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

(clone-indirect-buffer-other-window): Fix a typo in `pop-up-window'.

This commit is contained in:
Eli Zaretskii 2002-05-01 15:08:25 +00:00
parent 1d8a11093f
commit acd39eb62f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-05-01 Eli Zaretskii <eliz@is.elta.co.il>
* simple.el (clone-indirect-buffer-other-window): Fix a typo in
pop-up-window.
2002-05-01 Kim F. Storm <storm@cua.dk>
* emulation/cua-base.el (cua--pre-command-handler): Only

View File

@ -4140,7 +4140,7 @@ Select the new buffer in another window.
Optional second arg NORECORD non-nil means do not put this buffer at
the front of the list of recently selected ones."
(interactive "bClone buffer in other window: ")
(let ((popup-windows t))
(let ((pop-up-windows t))
(set-buffer buffer)
(clone-indirect-buffer nil t norecord)))