aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXue Fuqiao2013-08-07 10:25:52 +0800
committerXue Fuqiao2013-08-07 10:25:52 +0800
commitc85989f5c5d6d53a017f56ea13b1b2d47ea8f83a (patch)
treec7b00b7f158e74ce992c02533b4faf3ea59ba094
parent8a806f0430cf2c42e08768920a714cc497ce6f77 (diff)
downloademacs-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.texi1
-rw-r--r--doc/misc/ChangeLog5
-rw-r--r--doc/misc/cl.texi2
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
1247You can use @dfn{overlays} to alter the appearance of a buffer's text on 1248You can use @dfn{overlays} to alter the appearance of a buffer's text on
1248the screen, for the sake of presentation features. An overlay is an 1249the 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 @@
12013-08-07 Xue Fuqiao <xfq.free@gmail.com>
2
3 * cl.texi (Argument Lists):
4 (For Clauses): Add indexes.
5
12013-08-05 Xue Fuqiao <xfq.free@gmail.com> 62013-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
464Argument lists support @dfn{destructuring}. In Common Lisp, 465Argument lists support @dfn{destructuring}. In Common Lisp,
465destructuring is only allowed with @code{defmacro}; this package 466destructuring is only allowed with @code{defmacro}; this package
466allows it with @code{cl-defun} and other argument lists as well. 467allows 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,
2140based on the value of @code{x} left over from the previous time 2141based on the value of @code{x} left over from the previous time
2141through the loop. 2142through the loop.
2142 2143
2144@cindex destructuring, in cl-loop
2143Another feature of the @code{cl-loop} macro is @emph{destructuring}, 2145Another feature of the @code{cl-loop} macro is @emph{destructuring},
2144similar in concept to the destructuring provided by @code{defmacro} 2146similar in concept to the destructuring provided by @code{defmacro}
2145(@pxref{Argument Lists}). 2147(@pxref{Argument Lists}).