aboutsummaryrefslogtreecommitdiffstats
path: root/lispref
diff options
context:
space:
mode:
authorMiles Bader2005-10-15 00:26:05 +0000
committerMiles Bader2005-10-15 00:26:05 +0000
commit9fe76e1b256aefe892edf84beb1fdfaf5ab0efa1 (patch)
tree4570b6861b88c36c99783d4103d49c8658027834 /lispref
parent2f0837ccf0ba386b9a9aab0eac2bad3076491a93 (diff)
parentd3a597b7b41c2ebdb457e7c8bb037958138028f2 (diff)
downloademacs-9fe76e1b256aefe892edf84beb1fdfaf5ab0efa1.tar.gz
emacs-9fe76e1b256aefe892edf84beb1fdfaf5ab0efa1.zip
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-91
Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 581-597) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 133-141) - Update from CVS - Merge from emacs--cvs-trunk--0 - Update from CVS: texi/gnus.texi (RSS): Fix key description. - Update from CVS: texi/gnus.texi (Document Server Internals): Addition.
Diffstat (limited to 'lispref')
-rw-r--r--lispref/ChangeLog5
-rw-r--r--lispref/windows.texi16
2 files changed, 13 insertions, 8 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index c07a955b1c9..897d4a0aec2 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,8 @@
12005-10-08 Kim F. Storm <storm@cua.dk>
2
3 * windows.texi (Window Tree): Rename window-split-tree to window-tree.
4 Rename manual section accordingly.
5
12005-10-04 Kim F. Storm <storm@cua.dk> 62005-10-04 Kim F. Storm <storm@cua.dk>
2 7
3 * windows.texi (Window Split Tree): New section describing 8 * windows.texi (Window Split Tree): New section describing
diff --git a/lispref/windows.texi b/lispref/windows.texi
index c806577c4b8..0ca7d69c9f9 100644
--- a/lispref/windows.texi
+++ b/lispref/windows.texi
@@ -30,7 +30,7 @@ displayed in windows.
30* Size of Window:: Accessing the size of a window. 30* Size of Window:: Accessing the size of a window.
31* Resizing Windows:: Changing the size of a window. 31* Resizing Windows:: Changing the size of a window.
32* Coordinates and Windows:: Converting coordinates to windows. 32* Coordinates and Windows:: Converting coordinates to windows.
33* Window Split Tree:: The layout and sizes of all windows in a frame. 33* Window Tree:: The layout and sizes of all windows in a frame.
34* Window Configurations:: Saving and restoring the state of the screen. 34* Window Configurations:: Saving and restoring the state of the screen.
35* Window Hooks:: Hooks for scrolling, window size changes, 35* Window Hooks:: Hooks for scrolling, window size changes,
36 redisplay going past a certain point, 36 redisplay going past a certain point,
@@ -2168,19 +2168,19 @@ The function @code{coordinates-in-window-p} does not require a frame as
2168argument because it always uses the frame that @var{window} is on. 2168argument because it always uses the frame that @var{window} is on.
2169@end defun 2169@end defun
2170 2170
2171@node Window Split Tree 2171@node Window Tree
2172@section The Window Split Tree 2172@section The Window Tree
2173@cindex window split tree 2173@cindex window tree
2174 2174
2175 A @dfn{window split tree} specifies the layout, size, and relationship 2175 A @dfn{window tree} specifies the layout, size, and relationship
2176between all windows in one frame. 2176between all windows in one frame.
2177 2177
2178@defun split-window-tree &optional frame 2178@defun window-tree &optional frame
2179This function returns the window split tree for frame @var{frame}. 2179This function returns the window tree for frame @var{frame}.
2180If @var{frame} is omitted, the selected frame is used. 2180If @var{frame} is omitted, the selected frame is used.
2181 2181
2182The return value is a list of the form @code{(@var{root} @var{mini})}, 2182The return value is a list of the form @code{(@var{root} @var{mini})},
2183where @var{root} represents the window split tree of the frame's 2183where @var{root} represents the window tree of the frame's
2184root window, and @var{mini} is the frame's minibuffer window. 2184root window, and @var{mini} is the frame's minibuffer window.
2185 2185
2186If the root window is not split, @var{root} is the root window itself. 2186If the root window is not split, @var{root} is the root window itself.