emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r104604: Fix doc-strings of switch-to


From: martin rudalics
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104604: Fix doc-strings of switch-to-buffer family functions (bug#8875).
Date: Thu, 16 Jun 2011 10:55:08 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104604
committer: martin rudalics <address@hidden>
branch nick: trunk
timestamp: Thu 2011-06-16 10:55:08 +0200
message:
  Fix doc-strings of switch-to-buffer family functions (bug#8875).
  
  (switch-to-buffer-same-frame, switch-to-buffer-other-window)
  (switch-to-buffer-other-window-same-frame)
  (switch-to-buffer-other-frame): Fix doc-strings.  Reported by Drew
  Adams (Bug#8875).
modified:
  lisp/ChangeLog
  lisp/window.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-06-16 07:31:51 +0000
+++ b/lisp/ChangeLog    2011-06-16 08:55:08 +0000
@@ -3,6 +3,10 @@
        * window.el (display-buffer-normalize-specifiers-1): Respect
        current value of pop-up-frames for most reasonable values of
        second argument of display-buffer (Bug#8865).
+       (switch-to-buffer-same-frame, switch-to-buffer-other-window)
+       (switch-to-buffer-other-window-same-frame)
+       (switch-to-buffer-other-frame): Fix doc-strings.  Reported by Drew
+       Adams (Bug#8875).
 
 2011-06-15  Stefan Monnier  <address@hidden>
 

=== modified file 'lisp/window.el'
--- a/lisp/window.el    2011-06-16 07:31:51 +0000
+++ b/lisp/window.el    2011-06-16 08:55:08 +0000
@@ -5511,8 +5511,8 @@
 (defun switch-to-buffer-same-frame (buffer-or-name &optional norecord)
   "Switch to buffer BUFFER-OR-NAME in a window on the selected frame.
 Another frame will be used only if there is no other choice.
-Optional arguments BUFFER-OR-NAME and NORECORD have the same
-meaning as for `switch-to-buffer'.
+Arguments BUFFER-OR-NAME and NORECORD have the same meaning as
+for `switch-to-buffer'.
 
 This function is intended for interactive use only.  Lisp
 functions should call `pop-to-buffer-same-frame' instead."
@@ -5525,8 +5525,8 @@
   "Switch to buffer BUFFER-OR-NAME in another window.
 The selected window will be used only if there is no other
 choice.  Windows on the selected frame are preferred to windows
-on other frames.  Optional arguments BUFFER-OR-NAME and NORECORD
-have the same meaning as for `switch-to-buffer'.
+on other frames.  Arguments BUFFER-OR-NAME and NORECORD have the
+same meaning as for `switch-to-buffer'.
 
 This function is intended for interactive use only.  Lisp
 functions should call `pop-to-buffer-other-window' instead."
@@ -5538,8 +5538,8 @@
 (defun switch-to-buffer-other-window-same-frame (buffer-or-name &optional 
norecord)
   "Switch to buffer BUFFER-OR-NAME in another window on the selected frame.
 The selected window or another frame will be used only if there
-is no other choice.  Optional arguments BUFFER-OR-NAME and
-NORECORD have the same meaning as for `switch-to-buffer'.
+is no other choice.  Arguments BUFFER-OR-NAME and NORECORD have
+the same meaning as for `switch-to-buffer'.
 
 This function is intended for interactive use only.  Lisp
 functions should call `pop-to-buffer-other-window-same-frame'
@@ -5552,8 +5552,8 @@
 (defun switch-to-buffer-other-frame (buffer-or-name &optional norecord)
   "Switch to buffer BUFFER-OR-NAME on another frame.
 The same frame will be used only if there is no other choice.
-Optional arguments BUFFER-OR-NAME and NORECORD have the same
-meaning as for `switch-to-buffer'.
+Arguments BUFFER-OR-NAME and NORECORD have the same meaning
+as for `switch-to-buffer'.
 
 This function is intended for interactive use only.  Lisp
 functions should call `pop-to-buffer-other-frame' instead."


reply via email to

[Prev in Thread] Current Thread [Next in Thread]