]> git.eshelyaron.com Git - emacs.git/commitdiff
(clone-indirect-buffer-other-window): Fix a typo in `pop-up-window'.
authorEli Zaretskii <eliz@gnu.org>
Wed, 1 May 2002 15:08:25 +0000 (15:08 +0000)
committerEli Zaretskii <eliz@gnu.org>
Wed, 1 May 2002 15:08:25 +0000 (15:08 +0000)
lisp/ChangeLog
lisp/simple.el

index 61ac27b50fa09ea654ae6c813b35272fcfa91ed2..83876bf81c3d053ba8469db7810ae305cfdb3ad9 100644 (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
index ce19c413482458f2f6e691d567a9fde443c179dc..9edb9a53727e87ce71c940a67d5532fc87205745 100644 (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)))