diff options
| author | Xue Fuqiao | 2013-08-07 10:25:52 +0800 |
|---|---|---|
| committer | Xue Fuqiao | 2013-08-07 10:25:52 +0800 |
| commit | c85989f5c5d6d53a017f56ea13b1b2d47ea8f83a (patch) | |
| tree | c7b00b7f158e74ce992c02533b4faf3ea59ba094 | |
| parent | 8a806f0430cf2c42e08768920a714cc497ce6f77 (diff) | |
| download | emacs-c85989f5c5d6d53a017f56ea13b1b2d47ea8f83a.tar.gz emacs-c85989f5c5d6d53a017f56ea13b1b2d47ea8f83a.zip | |
doc/misc/cl.texi: Add indexes.
* doc/misc/cl.texi (Argument Lists):
(For Clauses): Add indexes.
| -rw-r--r-- | doc/lispref/display.texi | 1 | ||||
| -rw-r--r-- | doc/misc/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/misc/cl.texi | 2 |
3 files changed, 8 insertions, 0 deletions
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi index 59a6f5ce340..6b8d24179e7 100644 --- a/doc/lispref/display.texi +++ b/doc/lispref/display.texi | |||
| @@ -1243,6 +1243,7 @@ Type RET when done reading | |||
| 1243 | @node Overlays | 1243 | @node Overlays |
| 1244 | @section Overlays | 1244 | @section Overlays |
| 1245 | @cindex overlays | 1245 | @cindex overlays |
| 1246 | @c FIXME: mention intervals in this section? | ||
| 1246 | 1247 | ||
| 1247 | You can use @dfn{overlays} to alter the appearance of a buffer's text on | 1248 | You can use @dfn{overlays} to alter the appearance of a buffer's text on |
| 1248 | the screen, for the sake of presentation features. An overlay is an | 1249 | the screen, for the sake of presentation features. An overlay is an |
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index e8a5a7e22b2..f3f26ad1fc4 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-08-07 Xue Fuqiao <xfq.free@gmail.com> | ||
| 2 | |||
| 3 | * cl.texi (Argument Lists): | ||
| 4 | (For Clauses): Add indexes. | ||
| 5 | |||
| 1 | 2013-08-05 Xue Fuqiao <xfq.free@gmail.com> | 6 | 2013-08-05 Xue Fuqiao <xfq.free@gmail.com> |
| 2 | 7 | ||
| 3 | * cl.texi (Blocks and Exits): Add an index. | 8 | * cl.texi (Blocks and Exits): Add an index. |
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi index 1b5ea6e78dd..429d8a8b33f 100644 --- a/doc/misc/cl.texi +++ b/doc/misc/cl.texi | |||
| @@ -461,6 +461,7 @@ matter of stylistic taste: | |||
| 461 | @var{body})) | 461 | @var{body})) |
| 462 | @end example | 462 | @end example |
| 463 | 463 | ||
| 464 | @cindex destructuring, in argument list | ||
| 464 | Argument lists support @dfn{destructuring}. In Common Lisp, | 465 | Argument lists support @dfn{destructuring}. In Common Lisp, |
| 465 | destructuring is only allowed with @code{defmacro}; this package | 466 | destructuring is only allowed with @code{defmacro}; this package |
| 466 | allows it with @code{cl-defun} and other argument lists as well. | 467 | allows it with @code{cl-defun} and other argument lists as well. |
| @@ -2140,6 +2141,7 @@ that was just set by the previous clause; in the second loop, | |||
| 2140 | based on the value of @code{x} left over from the previous time | 2141 | based on the value of @code{x} left over from the previous time |
| 2141 | through the loop. | 2142 | through the loop. |
| 2142 | 2143 | ||
| 2144 | @cindex destructuring, in cl-loop | ||
| 2143 | Another feature of the @code{cl-loop} macro is @emph{destructuring}, | 2145 | Another feature of the @code{cl-loop} macro is @emph{destructuring}, |
| 2144 | similar in concept to the destructuring provided by @code{defmacro} | 2146 | similar in concept to the destructuring provided by @code{defmacro} |
| 2145 | (@pxref{Argument Lists}). | 2147 | (@pxref{Argument Lists}). |