]> git.eshelyaron.com Git - emacs.git/commitdiff
doc/misc/cl.texi: Add indexes.
authorXue Fuqiao <xfq.free@gmail.com>
Wed, 7 Aug 2013 02:25:52 +0000 (10:25 +0800)
committerXue Fuqiao <xfq.free@gmail.com>
Wed, 7 Aug 2013 02:25:52 +0000 (10:25 +0800)
* doc/misc/cl.texi (Argument Lists):
(For Clauses): Add indexes.

doc/lispref/display.texi
doc/misc/ChangeLog
doc/misc/cl.texi

index 59a6f5ce3404cb704828213213b03e8dd48aa7fa..6b8d24179e79f720f7679f28774e70828379cb71 100644 (file)
@@ -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
index e8a5a7e22b267bb3b8f64b81fb68a88f86b282a5..f3f26ad1fc4e87ac41a8bb8de4746cdd7de5afd7 100644 (file)
@@ -1,3 +1,8 @@
+2013-08-07  Xue Fuqiao  <xfq.free@gmail.com>
+
+       * cl.texi (Argument Lists):
+       (For Clauses): Add indexes.
+
 2013-08-05  Xue Fuqiao  <xfq.free@gmail.com>
 
        * cl.texi (Blocks and Exits): Add an index.
index 1b5ea6e78dd3fd26a7d671bb0121886ff0493128..429d8a8b33ffa3c9768c4f5e345718e394d3979a 100644 (file)
@@ -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}).