aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2004-07-11 02:18:15 +0000
committerLuc Teirlinck2004-07-11 02:18:15 +0000
commit839857c7bdeab1cfc27f10245a7ef28d9e639e3d (patch)
tree5dfe17cbb32499e896a88655dc2d8da6b70cf5c7
parent0ba2e87b15ef58a32a6112bbc18a96dd333c31a3 (diff)
downloademacs-839857c7bdeab1cfc27f10245a7ef28d9e639e3d.tar.gz
emacs-839857c7bdeab1cfc27f10245a7ef28d9e639e3d.zip
(switch-to-buffer-other-window): Doc fix.
-rw-r--r--lisp/files.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 301a3f48f15..da1e7128a94 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -869,8 +869,15 @@ use with M-x."
869 869
870(defun switch-to-buffer-other-window (buffer &optional norecord) 870(defun switch-to-buffer-other-window (buffer &optional norecord)
871 "Select buffer BUFFER in another window. 871 "Select buffer BUFFER in another window.
872If BUFFER does not identify an existing buffer, then this function
873creates a buffer with that name.
874
875When called from Lisp, BUFFER can be a buffer, a string \(a buffer name),
876or nil. If BUFFER is nil, then this function chooses a buffer
877using `other-buffer'.
872Optional second arg NORECORD non-nil means 878Optional second arg NORECORD non-nil means
873do not put this buffer at the front of the list of recently selected ones. 879do not put this buffer at the front of the list of recently selected ones.
880This function returns the buffer it switched to.
874 881
875This uses the function `display-buffer' as a subroutine; see its 882This uses the function `display-buffer' as a subroutine; see its
876documentation for additional customization information." 883documentation for additional customization information."