diff options
| author | Stefan Monnier | 2010-12-13 10:27:36 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2010-12-13 10:27:36 -0500 |
| commit | f49d1f52b2e368ef67dcfececd426de958548f4e (patch) | |
| tree | ce24ced92f2acc976daf4b69e3634c8bd600e44e /doc/misc | |
| parent | 07176b2a9e63a0d3933b167f987475d8a18da5cc (diff) | |
| parent | 11aad4e9f9f54ce8e9ecc66347e512b20a3cdf39 (diff) | |
| download | emacs-f49d1f52b2e368ef67dcfececd426de958548f4e.tar.gz emacs-f49d1f52b2e368ef67dcfececd426de958548f4e.zip | |
Merge from emacs-23
Diffstat (limited to 'doc/misc')
| -rw-r--r-- | doc/misc/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/misc/cl.texi | 18 |
2 files changed, 14 insertions, 9 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 174d3015291..d7d5618ae8d 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-12-13 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * cl.texi (For Clauses): Small fixes for frames and windows. | ||
| 4 | |||
| 5 | 2010-12-13 Glenn Morris <rgm@gnu.org> | ||
| 1 | 2010-12-11 Carsten Dominik <carsten.dominik@gmail.com> | 6 | 2010-12-11 Carsten Dominik <carsten.dominik@gmail.com> |
| 2 | 7 | ||
| 3 | * org.texi (Using capture): Document using prefix arguments for | 8 | * org.texi (Using capture): Document using prefix arguments for |
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi index 79038792a3e..4d7ebadff34 100644 --- a/doc/misc/cl.texi +++ b/doc/misc/cl.texi | |||
| @@ -2494,15 +2494,18 @@ term restricts the search to just the specified property. The | |||
| 2494 | @code{of} term may specify either a buffer or a string. | 2494 | @code{of} term may specify either a buffer or a string. |
| 2495 | 2495 | ||
| 2496 | @item for @var{var} being the frames | 2496 | @item for @var{var} being the frames |
| 2497 | This clause iterates over all frames, i.e., X window system windows | 2497 | This clause iterates over all Emacs frames. The clause @code{screens} is |
| 2498 | open on Emacs files. The | 2498 | a synonym for @code{frames}. The frames are visited in |
| 2499 | clause @code{screens} is a synonym for @code{frames}. The frames | 2499 | @code{next-frame} order starting from @code{selected-frame}. |
| 2500 | are visited in @code{next-frame} order starting from | ||
| 2501 | @code{selected-frame}. | ||
| 2502 | 2500 | ||
| 2503 | @item for @var{var} being the windows [of @var{frame}] | 2501 | @item for @var{var} being the windows [of @var{frame}] |
| 2504 | This clause iterates over the windows (in the Emacs sense) of | 2502 | This clause iterates over the windows (in the Emacs sense) of |
| 2505 | the current frame, or of the specified @var{frame}. | 2503 | the current frame, or of the specified @var{frame}. It visits windows |
| 2504 | in @code{next-window} order starting from @code{selected-window} | ||
| 2505 | (or @code{frame-selected-window} if you specify @var{frame}). | ||
| 2506 | This clause treats the minibuffer window in the same way as | ||
| 2507 | @code{next-window} does. For greater flexibility, consider using | ||
| 2508 | @code{walk-windows} instead. | ||
| 2506 | 2509 | ||
| 2507 | @item for @var{var} being the buffers | 2510 | @item for @var{var} being the buffers |
| 2508 | This clause iterates over all buffers in Emacs. It is equivalent | 2511 | This clause iterates over all buffers in Emacs. It is equivalent |
| @@ -5322,6 +5325,3 @@ recursion. | |||
| 5322 | 5325 | ||
| 5323 | @bye | 5326 | @bye |
| 5324 | 5327 | ||
| 5325 | @ignore | ||
| 5326 | arch-tag: b61e7200-3bfa-4a70-a9d3-095e152696f8 | ||
| 5327 | @end ignore | ||