* doc/misc/cl.texi (Mapping over Sequences): Rename mapc => cl-mapc.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 12 Aug 2010 09:02:02 +0000 (11:02 +0200)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 12 Aug 2010 09:02:02 +0000 (11:02 +0200)
Fixes: debbugs:6575

doc/misc/ChangeLog
doc/misc/cl.texi

index 67de15f..8cc9c08 100644 (file)
@@ -1,3 +1,7 @@
+2010-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * cl.texi (Mapping over Sequences): Rename mapc => cl-mapc.
+
 2010-08-09  Jay Belanger  <jay.p.belanger@gmail.com>
 
        * calc.texi (Customizing Calc): Rearrange description of new
index 755b2f3..96e4a28 100644 (file)
@@ -3763,10 +3763,10 @@ that it passes in the list pointers themselves rather than the
 @code{car}s of the advancing pointers.
 @end defun
 
-@defun mapc function seq &rest more-seqs
+@defun cl-mapc function seq &rest more-seqs
 This function is like @code{mapcar*}, except that the values returned
 by @var{function} are ignored and thrown away rather than being
-collected into a list.  The return value of @code{mapc} is @var{seq},
+collected into a list.  The return value of @code{cl-mapc} is @var{seq},
 the first sequence.  This function is more general than the Emacs
 primitive @code{mapc}.
 @end defun