aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2010-08-12 11:02:02 +0200
committerStefan Monnier2010-08-12 11:02:02 +0200
commitb695bedabef0c0ca6b092319a83d90d4698324aa (patch)
treeabe0b404f69a61ff34a6b18a61c82c0ffb08bd93
parent61b6abbdb48cf42646f8ea7894511e40ae1cab74 (diff)
downloademacs-b695bedabef0c0ca6b092319a83d90d4698324aa.tar.gz
emacs-b695bedabef0c0ca6b092319a83d90d4698324aa.zip
* doc/misc/cl.texi (Mapping over Sequences): Rename mapc => cl-mapc.
Fixes: debbugs:6575
-rw-r--r--doc/misc/ChangeLog4
-rw-r--r--doc/misc/cl.texi4
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 67de15fd2f8..8cc9c082ce9 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,7 @@
12010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * cl.texi (Mapping over Sequences): Rename mapc => cl-mapc.
4
12010-08-09 Jay Belanger <jay.p.belanger@gmail.com> 52010-08-09 Jay Belanger <jay.p.belanger@gmail.com>
2 6
3 * calc.texi (Customizing Calc): Rearrange description of new 7 * calc.texi (Customizing Calc): Rearrange description of new
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi
index 755b2f3f1b7..96e4a28ae82 100644
--- a/doc/misc/cl.texi
+++ b/doc/misc/cl.texi
@@ -3763,10 +3763,10 @@ that it passes in the list pointers themselves rather than the
3763@code{car}s of the advancing pointers. 3763@code{car}s of the advancing pointers.
3764@end defun 3764@end defun
3765 3765
3766@defun mapc function seq &rest more-seqs 3766@defun cl-mapc function seq &rest more-seqs
3767This function is like @code{mapcar*}, except that the values returned 3767This function is like @code{mapcar*}, except that the values returned
3768by @var{function} are ignored and thrown away rather than being 3768by @var{function} are ignored and thrown away rather than being
3769collected into a list. The return value of @code{mapc} is @var{seq}, 3769collected into a list. The return value of @code{cl-mapc} is @var{seq},
3770the first sequence. This function is more general than the Emacs 3770the first sequence. This function is more general than the Emacs
3771primitive @code{mapc}. 3771primitive @code{mapc}.
3772@end defun 3772@end defun