aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 4bab35a25f7..3a0f3c80561 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1047,7 +1047,7 @@ mapcar1 (leni, vals, fn, seq)
1047DEFUN ("mapconcat", Fmapconcat, Smapconcat, 3, 3, 0, 1047DEFUN ("mapconcat", Fmapconcat, Smapconcat, 3, 3, 0,
1048 "Apply FN to each element of SEQ, and concat the results as strings.\n\ 1048 "Apply FN to each element of SEQ, and concat the results as strings.\n\
1049In between each pair of results, stick in SEP.\n\ 1049In between each pair of results, stick in SEP.\n\
1050Thus, \" \" as SEP results in spaces between the values return by FN.") 1050Thus, \" \" as SEP results in spaces between the values returned by FN.")
1051 (fn, seq, sep) 1051 (fn, seq, sep)
1052 Lisp_Object fn, seq, sep; 1052 Lisp_Object fn, seq, sep;
1053{ 1053{