aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/files.el
diff options
context:
space:
mode:
authorAndreas Schwab <[email protected]>2007-12-23 16:08:54 +0000
committerAndreas Schwab <[email protected]>2007-12-23 16:08:54 +0000
commitf862fc9e051dfd9850b8b45fe9e41dd5f781ec5f (patch)
treec0e1e0d4a40f2af22ba26c7a800eed4092109fee /lisp/files.el
parent90e12e78d6dc78da17e2a15ed763a9f1cad6f333 (diff)
(switch-to-buffer-other-frame): Return the buffer
switched to.
Diffstat (limited to 'lisp/files.el')
-rw-r--r--lisp/files.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 423bc1eb80..d4b15324f9 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -1010,14 +1010,16 @@ documentation for additional customization information."
"Switch to buffer BUFFER in another frame.
Optional second arg NORECORD non-nil means
do not put this buffer at the front of the list of recently selected ones.
+This function returns the buffer it switched to.
This uses the function `display-buffer' as a subroutine; see its
documentation for additional customization information."
(interactive "BSwitch to buffer in other frame: ")
(let ((pop-up-frames t)
same-window-buffer-names same-window-regexps)
- (pop-to-buffer buffer t norecord)
- (raise-frame (window-frame (selected-window)))))
+ (prog1
+ (pop-to-buffer buffer t norecord)
+ (raise-frame (window-frame (selected-window))))))
(defun display-buffer-other-frame (buffer)
"Switch to buffer BUFFER in another frame.