summaryrefslogtreecommitdiff
path: root/src/fns.c
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2019-07-06 12:52:12 -0700
committerGlenn Morris <rgm@gnu.org>2019-07-06 12:52:12 -0700
commitd8732a82451fea57d6efa43e704e0c693e11b517 (patch)
tree7abe0bd16fa581fb9101a1eb67b29ba4030d9eaa /src/fns.c
parent206a9b4be7ba6ab0b0204d1ef7ab86389f766c8a (diff)
parent1e6d8e003ce28f508e26eb7107ce5bd0e20bb4b8 (diff)
downloademacs-d8732a82451fea57d6efa43e704e0c693e11b517.tar.gz
Merge from origin/emacs-26
1e6d8e0 (origin/emacs-26) ; * doc/emacs/killing.texi (Secondary Selec... e2344a7 * lisp/svg.el, lisp/progmodes/ada-mode.el: Fix bug#36360. ff738ab Minor copyedit of "Font Lock" in user manual faf99dc Improve description of image descriptors 21351cc ; * src/lread.c (Fread): Make the comment wording more accurate. d176090 Improve documentation of secondary selections 8910fe1 * src/fns.c (Fmapconcat): Doc fix. (Bug#36418) # Conflicts: # lisp/svg.el
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 2fc000a7f43..77c0b15037f 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -2674,7 +2674,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. */)