aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1993-01-14 21:28:18 +0000
committerRoland McGrath1993-01-14 21:28:18 +0000
commit2be5e5dbe61782d128cc93709c1ecd7284f24c27 (patch)
treea7a907995fab443f2962510d911351fe49a90c23
parentb0c33a9470ab534ba3394ffae4909d6e68ea7d35 (diff)
downloademacs-2be5e5dbe61782d128cc93709c1ecd7284f24c27.tar.gz
emacs-2be5e5dbe61782d128cc93709c1ecd7284f24c27.zip
(switch-to-buffer-other-frame): Pass t to pop-to-buffer.
-rw-r--r--lisp/files.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 31ce9acc129..8e014c53aab 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -297,7 +297,7 @@ containing it, until no links are left at any level."
297 "Switch to buffer BUFFER in another frame." 297 "Switch to buffer BUFFER in another frame."
298 (interactive "BSwitch to buffer in other frame: ") 298 (interactive "BSwitch to buffer in other frame: ")
299 (let ((pop-up-frames t)) 299 (let ((pop-up-frames t))
300 (pop-to-buffer buffer))) 300 (pop-to-buffer buffer t)))
301 301
302(defun find-file (filename) 302(defun find-file (filename)
303 "Edit file FILENAME. 303 "Edit file FILENAME.