aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-05-19 15:07:29 +0000
committerChong Yidong2009-05-19 15:07:29 +0000
commit04173931b0c63333bbdea4f7ed78a72d6835147e (patch)
tree29b36107754d6a47ccab927c134a850e81839c06
parentac71ced75b34c3a645e99986923d8b6c9b2fdc23 (diff)
downloademacs-04173931b0c63333bbdea4f7ed78a72d6835147e.tar.gz
emacs-04173931b0c63333bbdea4f7ed78a72d6835147e.zip
* windows.texi (Cyclic Window Ordering, Cyclic Window Ordering)
(Displaying Buffers, Resizing Windows): Correct mistakes; next-window, previous-window, and pop-to-buffer are not commands, and fit-window-to-buffer" is a command. (Pointed out by Martin Rudalics.)
-rw-r--r--doc/lispref/ChangeLog8
-rw-r--r--doc/lispref/windows.texi8
2 files changed, 12 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 9bcd9511f78..c151f92006e 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,11 @@
12009-05-19 Chong Yidong <cyd@stupidchicken.com>
2
3 * windows.texi (Cyclic Window Ordering, Cyclic Window Ordering)
4 (Displaying Buffers, Resizing Windows): Correct mistakes;
5 next-window, previous-window, and pop-to-buffer are not commands,
6 and fit-window-to-buffer" is a command. (Pointed out by Martin
7 Rudalics.)
8
12009-05-17 Richard M Stallman <rms@gnu.org> 92009-05-17 Richard M Stallman <rms@gnu.org>
2 10
3 * modes.texi (Precalculated Fontification): Clarify text. 11 * modes.texi (Precalculated Fontification): Clarify text.
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi
index 8bc51d4b646..5e58bb13486 100644
--- a/doc/lispref/windows.texi
+++ b/doc/lispref/windows.texi
@@ -524,7 +524,7 @@ horizontal, the ordering is top to bottom in the left part, and so on.
524In general, within each set of siblings at any level in the window tree 524In general, within each set of siblings at any level in the window tree
525(@pxref{Window Tree}), the order is left to right, or top to bottom. 525(@pxref{Window Tree}), the order is left to right, or top to bottom.
526 526
527@deffn Command next-window &optional window minibuf all-frames 527@deffn next-window &optional window minibuf all-frames
528@cindex minibuffer window, and @code{next-window} 528@cindex minibuffer window, and @code{next-window}
529This function returns the window following @var{window} in the cyclic 529This function returns the window following @var{window} in the cyclic
530ordering of windows. This is the window @kbd{C-x o} selects if typed 530ordering of windows. This is the window @kbd{C-x o} selects if typed
@@ -589,7 +589,7 @@ buffer @samp{windows.texi}:
589@end example 589@end example
590@end deffn 590@end deffn
591 591
592@deffn Command previous-window &optional window minibuf all-frames 592@deffn previous-window &optional window minibuf all-frames
593This function returns the window preceding @var{window} in the cyclic 593This function returns the window preceding @var{window} in the cyclic
594ordering of windows. The other arguments specify which windows to 594ordering of windows. The other arguments specify which windows to
595include in the cycle, as in @code{next-window}. 595include in the cycle, as in @code{next-window}.
@@ -826,7 +826,7 @@ This function updates the buffer list just like @code{switch-to-buffer}
826unless @var{norecord} is non-@code{nil}. 826unless @var{norecord} is non-@code{nil}.
827@end deffn 827@end deffn
828 828
829@deffn Command pop-to-buffer buffer-or-name &optional other-window norecord 829@deffn pop-to-buffer buffer-or-name &optional other-window norecord
830This command makes @var{buffer-or-name} the current buffer and switches 830This command makes @var{buffer-or-name} the current buffer and switches
831to it in some window, preferably not the window previously selected. 831to it in some window, preferably not the window previously selected.
832The ``popped-to'' window becomes the selected window. Its frame is 832The ``popped-to'' window becomes the selected window. Its frame is
@@ -2184,7 +2184,7 @@ requested size adjustment, it signals an error. On success, this
2184function returns @code{nil}. 2184function returns @code{nil}.
2185@end defun 2185@end defun
2186 2186
2187@defun fit-window-to-buffer &optional window max-height min-height 2187@defun Command fit-window-to-buffer &optional window max-height min-height
2188This function makes @var{window} the right height to display its 2188This function makes @var{window} the right height to display its
2189contents exactly. The default for @var{window} is the selected window. 2189contents exactly. The default for @var{window} is the selected window.
2190 2190