aboutsummaryrefslogtreecommitdiffstats
path: root/lispref
diff options
context:
space:
mode:
Diffstat (limited to 'lispref')
-rw-r--r--lispref/functions.texi7
1 files changed, 7 insertions, 0 deletions
diff --git a/lispref/functions.texi b/lispref/functions.texi
index e4241d9a967..6cdcb6bce1b 100644
--- a/lispref/functions.texi
+++ b/lispref/functions.texi
@@ -748,6 +748,13 @@ Return the list of results."
748@end smallexample 748@end smallexample
749@end defun 749@end defun
750 750
751@defun mapc function sequence
752@tindex mapc
753@code{mapc} is like @code{mapcar} except that @var{function} is used for
754side-effects only---the values it returns are ignored, not collected
755into a list. @code{mapc} always returns @var{sequence}.
756@end defun
757
751@defun mapconcat function sequence separator 758@defun mapconcat function sequence separator
752@code{mapconcat} applies @var{function} to each element of 759@code{mapconcat} applies @var{function} to each element of
753@var{sequence}: the results, which must be strings, are concatenated. 760@var{sequence}: the results, which must be strings, are concatenated.