# HG changeset patch # User Eli Zaretskii # Date 990097080 0 # Node ID 0068cd6ba2f47b825f207fd0a0f1d95a273a2076 # Parent 99998083d7104c4d184aec12c1c11fbbbb9f9b86 (switch-to-buffer-other-window, switch-to-buffer-other-frame): Add an xref to display-buffer in the doc string. diff -r 99998083d710 -r 0068cd6ba2f4 lisp/files.el --- a/lisp/files.el Thu May 17 10:54:38 2001 +0000 +++ b/lisp/files.el Thu May 17 10:58:00 2001 +0000 @@ -700,7 +700,10 @@ (defun switch-to-buffer-other-window (buffer &optional norecord) "Select buffer 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." +do not put this buffer at the front of the list of recently selected ones. + +This uses the function `display-buffer' as a subroutine; see its +documentation for additional customization information." (interactive "BSwitch to buffer in other window: ") (let ((pop-up-windows t)) (pop-to-buffer buffer t norecord))) @@ -708,7 +711,10 @@ (defun switch-to-buffer-other-frame (buffer &optional norecord) "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." +do not put this buffer at the front of the list of recently selected ones. + +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)) (pop-to-buffer buffer t norecord)