When you add a new item, please add it without either +++ or ---
so I will know I still need to look at it -- rms.
+** The new function `mapc' is like `mapcar' but doesn't collect the
+argument function's results.
+
** The functions base64-decode-region and base64-decode-string now
signal an error instead of returning nil if decoding fails.
@end smallexample
@end defun
+@defun mapc function sequence
+@tindex mapc
+@code{mapc} is like @code{mapcar} except that @var{function} is used for
+side-effects only---the values it returns are ignored, not collected
+into a list. @code{mapc} always returns @var{sequence}.
+@end defun
+
@defun mapconcat function sequence separator
@code{mapconcat} applies @var{function} to each element of
@var{sequence}: the results, which must be strings, are concatenated.