From: Eli Zaretskii Date: Wed, 1 May 2002 15:12:14 +0000 (+0000) Subject: (clone-indirect-buffer-other-window): Fix a typo in `popup-windows'. X-Git-Tag: emacs-pretest-21.2.91~290 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=be1a9e96fbab035aded892ef7e2b4ddeeb0cb90f;p=emacs.git (clone-indirect-buffer-other-window): Fix a typo in `popup-windows'. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 653d942a787..000b816ae35 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 + `popup-windows'. + 2002-04-23 Andreas Schwab * menu-bar.el (menu-bar-goto-menu): Fix bindings for next-tag and diff --git a/lisp/simple.el b/lisp/simple.el index a202951b422..de998269ecf 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -4032,7 +4032,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)))