* src/fns.c (Fmapconcat): Doc fix. (Bug#35710)
This commit is contained in:
parent
8e5fc38a2f
commit
aecbbd57c1
1 changed files with 6 additions and 2 deletions
|
@ -2495,7 +2495,11 @@ DEFUN ("mapconcat", Fmapconcat, Smapconcat, 3, 3, 0,
|
||||||
doc: /* Apply FUNCTION to each element of SEQUENCE, and concat the results as strings.
|
doc: /* Apply FUNCTION to each element of SEQUENCE, and concat the results as strings.
|
||||||
In between each pair of results, stick in SEPARATOR. Thus, " " as
|
In between each pair of results, stick in SEPARATOR. Thus, " " as
|
||||||
SEPARATOR results in spaces between the values returned by FUNCTION.
|
SEPARATOR results in spaces between the values returned by FUNCTION.
|
||||||
SEQUENCE may be a list, a vector, a bool-vector, or a string. */)
|
SEQUENCE may be a list, a vector, a bool-vector, or a string.
|
||||||
|
SEPARATOR must be a string.
|
||||||
|
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. */)
|
||||||
(Lisp_Object function, Lisp_Object sequence, Lisp_Object separator)
|
(Lisp_Object function, Lisp_Object sequence, Lisp_Object separator)
|
||||||
{
|
{
|
||||||
USE_SAFE_ALLOCA;
|
USE_SAFE_ALLOCA;
|
||||||
|
|
Loading…
Add table
Reference in a new issue