]> git.eshelyaron.com Git - emacs.git/commitdiff
* 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 67de15fd2f851885ae623ca2f3456273a8fda21e..8cc9c082ce9af403f31d25742c61f15bd1b0eac1 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 755b2f3f1b70494108ca7e37858d190848aea355..96e4a28ae82dabaef3654bfc10a1be298d63d482 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