]> git.eshelyaron.com Git - emacs.git/commitdiff
* doc/misc/cl.texi (For Clauses): Small fixes for frames and windows.
authorGlenn Morris <rgm@gnu.org>
Thu, 2 Dec 2010 04:09:20 +0000 (20:09 -0800)
committerGlenn Morris <rgm@gnu.org>
Thu, 2 Dec 2010 04:09:20 +0000 (20:09 -0800)
doc/misc/ChangeLog
doc/misc/cl.texi

index bb211e7ffcae107bcfeb6f1eb87f6ff117cf9cf1..89cc21c31de3236951d2fc3c9242c7c7ff650aa6 100644 (file)
@@ -1,3 +1,7 @@
+2010-12-02  Glenn Morris  <rgm@gnu.org>
+
+       * cl.texi (For Clauses): Small fixes for frames and windows.
+
 2010-11-23  Glenn Morris  <rgm@gnu.org>
            James Clark  <none@example.com>
 
index 780d53c90179f201004fc41ca333edcafdc463b8..e3a0dde3e479bee2991a79b2594a654fab682eb2 100644 (file)
@@ -2494,15 +2494,18 @@ term restricts the search to just the specified property.  The
 @code{of} term may specify either a buffer or a string.
 
 @item for @var{var} being the frames
-This clause iterates over all frames, i.e., X window system windows
-open on Emacs files.  The
-clause @code{screens} is a synonym for @code{frames}.  The frames
-are visited in @code{next-frame} order starting from
-@code{selected-frame}.
+This clause iterates over all Emacs frames. The clause @code{screens} is
+a synonym for @code{frames}.  The frames are visited in
+@code{next-frame} order starting from @code{selected-frame}.
 
 @item for @var{var} being the windows [of @var{frame}]
 This clause iterates over the windows (in the Emacs sense) of
-the current frame, or of the specified @var{frame}.
+the current frame, or of the specified @var{frame}.  It visits windows
+in @code{next-window} order starting from @code{selected-window}
+(or @code{frame-selected-window} if you specify @var{frame}).
+This clause treats the minibuffer window in the same way as
+@code{next-window} does.  For greater flexibility, consider using
+@code{walk-windows} instead.
 
 @item for @var{var} being the buffers
 This clause iterates over all buffers in Emacs.  It is equivalent
@@ -5322,6 +5325,3 @@ recursion.
 
 @bye
 
-@ignore
-   arch-tag: b61e7200-3bfa-4a70-a9d3-095e152696f8
-@end ignore