diff options
| author | Luc Teirlinck | 2004-07-11 02:18:15 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2004-07-11 02:18:15 +0000 |
| commit | 839857c7bdeab1cfc27f10245a7ef28d9e639e3d (patch) | |
| tree | 5dfe17cbb32499e896a88655dc2d8da6b70cf5c7 | |
| parent | 0ba2e87b15ef58a32a6112bbc18a96dd333c31a3 (diff) | |
| download | emacs-839857c7bdeab1cfc27f10245a7ef28d9e639e3d.tar.gz emacs-839857c7bdeab1cfc27f10245a7ef28d9e639e3d.zip | |
(switch-to-buffer-other-window): Doc fix.
| -rw-r--r-- | lisp/files.el | 7 |
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. |
| 872 | If BUFFER does not identify an existing buffer, then this function | ||
| 873 | creates a buffer with that name. | ||
| 874 | |||
| 875 | When called from Lisp, BUFFER can be a buffer, a string \(a buffer name), | ||
| 876 | or nil. If BUFFER is nil, then this function chooses a buffer | ||
| 877 | using `other-buffer'. | ||
| 872 | Optional second arg NORECORD non-nil means | 878 | Optional second arg NORECORD non-nil means |
| 873 | do not put this buffer at the front of the list of recently selected ones. | 879 | do not put this buffer at the front of the list of recently selected ones. |
| 880 | This function returns the buffer it switched to. | ||
| 874 | 881 | ||
| 875 | This uses the function `display-buffer' as a subroutine; see its | 882 | This uses the function `display-buffer' as a subroutine; see its |
| 876 | documentation for additional customization information." | 883 | documentation for additional customization information." |