]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 15 Nov 2012 21:01:25 +0000 (22:01 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 15 Nov 2012 21:01:25 +0000 (22:01 +0100)
lisp/ChangeLog
lisp/emacs-lisp/cl-macs.el

index c84c6fe9dd23ce7d82f8b577e259ab60b9b5be76..81204ca23324990a201bb2c8af700ef3984dd651 100644 (file)
@@ -1,3 +1,7 @@
+2012-11-15  Juanma Barranquero  <lekktu@gmail.com>
+
+       * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
+
 2012-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
index 52188c53e6f47d1639e9ba6753d0b40ca3786ccf..c0b6be44d7b5e37230513aad7858820e9e4b94d6 100644 (file)
@@ -756,7 +756,7 @@ This is compatible with Common Lisp, but note that `defun' and
 
 ;;;###autoload
 (defmacro cl-loop (&rest loop-args)
-  "The Common Lisp `cl-loop' macro.
+  "The Common Lisp `loop' macro.
 Valid clauses are:
   for VAR from/upfrom/downfrom NUM to/upto/downto/above/below NUM by NUM,
   for VAR in LIST by FUNC, for VAR on LIST by FUNC, for VAR = INIT then EXPR,
@@ -1501,7 +1501,7 @@ such that COMBO is equivalent to (and . CLAUSES)."
 
 ;;;###autoload
 (defmacro cl-do (steps endtest &rest body)
-  "The Common Lisp `cl-do' loop.
+  "The Common Lisp `do' loop.
 
 \(fn ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)"
   (declare (indent 2)
@@ -1513,7 +1513,7 @@ such that COMBO is equivalent to (and . CLAUSES)."
 
 ;;;###autoload
 (defmacro cl-do* (steps endtest &rest body)
-  "The Common Lisp `cl-do*' loop.
+  "The Common Lisp `do*' loop.
 
 \(fn ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)"
   (declare (indent 2) (debug cl-do))