]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/fns.c (Fmapconcat): Doc fix. (Bug#36418)
authorEli Zaretskii <eliz@gnu.org>
Sat, 6 Jul 2019 07:31:06 +0000 (10:31 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 6 Jul 2019 07:31:06 +0000 (10:31 +0300)
src/fns.c

index 2276a9971b21687bb0a86eb39841fc1c3aaa04e2..97a505ecbefe6102a43534bc44d903c4faf52e8c 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -2496,7 +2496,7 @@ DEFUN ("mapconcat", Fmapconcat, Smapconcat, 3, 3, 0,
 In between each pair of results, stick in SEPARATOR.  Thus, " " as
   SEPARATOR results in spaces between the values returned by FUNCTION.
 SEQUENCE may be a list, a vector, a bool-vector, or a string.
-SEPARATOR must be a string.
+SEPARATOR must be a string, a vector, or a list of characters.
 FUNCTION must be a function of one argument, and must return a value
   that is a sequence of characters: either a string, or a vector or
   list of numbers that are valid character codepoints.  */)