From: Eli Zaretskii Date: Wed, 1 May 2002 15:08:25 +0000 (+0000) Subject: (clone-indirect-buffer-other-window): Fix a typo in `pop-up-window'. X-Git-Tag: ttn-vms-21-2-B4~15238 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=acd39eb62f82ce0516141deab2566fecb23c42af;p=emacs.git (clone-indirect-buffer-other-window): Fix a typo in `pop-up-window'. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 61ac27b50fa..83876bf81c3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2002-05-01 Eli Zaretskii + + * simple.el (clone-indirect-buffer-other-window): Fix a typo in + pop-up-window. + 2002-05-01 Kim F. Storm * 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. 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)))