From: Xue Fuqiao Date: Wed, 7 Aug 2013 02:25:52 +0000 (+0800) Subject: doc/misc/cl.texi: Add indexes. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1686^2~395 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c85989f5c5d6d53a017f56ea13b1b2d47ea8f83a;p=emacs.git doc/misc/cl.texi: Add indexes. * doc/misc/cl.texi (Argument Lists): (For Clauses): Add indexes. --- 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 @node Overlays @section Overlays @cindex overlays +@c FIXME: mention intervals in this section? You can use @dfn{overlays} to alter the appearance of a buffer's text on 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 @@ +2013-08-07 Xue Fuqiao + + * cl.texi (Argument Lists): + (For Clauses): Add indexes. + 2013-08-05 Xue Fuqiao * 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: @var{body})) @end example +@cindex destructuring, in argument list Argument lists support @dfn{destructuring}. In Common Lisp, destructuring is only allowed with @code{defmacro}; this package 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, based on the value of @code{x} left over from the previous time through the loop. +@cindex destructuring, in cl-loop Another feature of the @code{cl-loop} macro is @emph{destructuring}, similar in concept to the destructuring provided by @code{defmacro} (@pxref{Argument Lists}).