diff options
| author | Stefan Monnier | 2010-08-12 11:02:02 +0200 |
|---|---|---|
| committer | Stefan Monnier | 2010-08-12 11:02:02 +0200 |
| commit | b695bedabef0c0ca6b092319a83d90d4698324aa (patch) | |
| tree | abe0b404f69a61ff34a6b18a61c82c0ffb08bd93 | |
| parent | 61b6abbdb48cf42646f8ea7894511e40ae1cab74 (diff) | |
| download | emacs-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/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/misc/cl.texi | 4 |
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 @@ | |||
| 1 | 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * cl.texi (Mapping over Sequences): Rename mapc => cl-mapc. | ||
| 4 | |||
| 1 | 2010-08-09 Jay Belanger <jay.p.belanger@gmail.com> | 5 | 2010-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 |
| 3767 | This function is like @code{mapcar*}, except that the values returned | 3767 | This function is like @code{mapcar*}, except that the values returned |
| 3768 | by @var{function} are ignored and thrown away rather than being | 3768 | by @var{function} are ignored and thrown away rather than being |
| 3769 | collected into a list. The return value of @code{mapc} is @var{seq}, | 3769 | collected into a list. The return value of @code{cl-mapc} is @var{seq}, |
| 3770 | the first sequence. This function is more general than the Emacs | 3770 | the first sequence. This function is more general than the Emacs |
| 3771 | primitive @code{mapc}. | 3771 | primitive @code{mapc}. |
| 3772 | @end defun | 3772 | @end defun |