diff options
author | Martin Rudalics <rudalics@gmx.at> | 2013-11-12 08:25:14 +0100 |
---|---|---|
committer | Martin Rudalics <rudalics@gmx.at> | 2013-11-12 08:25:14 +0100 |
commit | e6f759f9fd6a12e1249863150bddde58de90deec (patch) | |
tree | 519d2b5b14d841c84aee580e74a469b62cef1429 /lisp | |
parent | b3671617075e5d7307255425c292c9f211606cd2 (diff) | |
download | emacs-e6f759f9fd6a12e1249863150bddde58de90deec.tar.gz emacs-e6f759f9fd6a12e1249863150bddde58de90deec.tar.bz2 emacs-e6f759f9fd6a12e1249863150bddde58de90deec.zip |
Fix doc-string of display-buffer-other-frame. (Bug#15868)
* window.el (display-buffer-other-frame): Fix doc-string.
(Bug#15868)
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/window.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e12b9252df8..951fcd88abf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2013-11-12 Martin Rudalics <rudalics@gmx.at> + + * window.el (display-buffer-other-frame): Fix doc-string. + (Bug#15868) + 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca> * subr.el (force-mode-line-update): Delete, move to buffer.c. diff --git a/lisp/window.el b/lisp/window.el index 3f409a6f26a..07741c74a84 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -5545,7 +5545,7 @@ argument, ACTION is t." window)))) (defun display-buffer-other-frame (buffer) - "Display buffer BUFFER in another frame. + "Display buffer BUFFER preferably in another frame. This uses the function `display-buffer' as a subroutine; see its documentation for additional customization information." (interactive "BDisplay buffer in other frame: ") |