comparison src/fns.c @ 39956:b394d7876697

(Fmapconcat): Fix typo in a doc string.
author Pavel Janík <Pavel@Janik.cz>
date Mon, 15 Oct 2001 11:13:17 +0000
parents 34ec3a68775d
children 51a89919bc4e
comparison
equal deleted inserted replaced
39955:691c751df204 39956:b394d7876697
2717 UNGCPRO; 2717 UNGCPRO;
2718 } 2718 }
2719 2719
2720 DEFUN ("mapconcat", Fmapconcat, Smapconcat, 3, 3, 0, 2720 DEFUN ("mapconcat", Fmapconcat, Smapconcat, 3, 3, 0,
2721 /* Apply FUNCTION to each element of SEQUENCE, and concat the results as strings. 2721 /* Apply FUNCTION to each element of SEQUENCE, and concat the results as strings.
2722 In between each pair of results, stick in SEPARATOR. Thus, "" as 2722 In between each pair of results, stick in SEPARATOR. Thus, " " as
2723 SEPARATOR results in spaces between the values returned by FUNCTION. 2723 SEPARATOR results in spaces between the values returned by FUNCTION.
2724 SEQUENCE may be a list, a vector, a bool-vector, or a string. */ 2724 SEQUENCE may be a list, a vector, a bool-vector, or a string. */
2725 (function, sequence, separator)) 2725 (function, sequence, separator))
2726 Lisp_Object function, sequence, separator; 2726 Lisp_Object function, sequence, separator;
2727 { 2727 {