aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fns.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 1d44afadcd3..ac42c96037b 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -198,7 +198,8 @@ The last argument is not copied, just used as the tail of the new list.")
198DEFUN ("concat", Fconcat, Sconcat, 0, MANY, 0, 198DEFUN ("concat", Fconcat, Sconcat, 0, MANY, 0,
199 "Concatenate all the arguments and make the result a string.\n\ 199 "Concatenate all the arguments and make the result a string.\n\
200The result is a string whose elements are the elements of all the arguments.\n\ 200The result is a string whose elements are the elements of all the arguments.\n\
201Each argument may be a string, a list of numbers, or a vector of numbers.") 201Each argument may be a string, a list of characters (integers),\n\
202or a vector of characters (integers).")
202 (nargs, args) 203 (nargs, args)
203 int nargs; 204 int nargs;
204 Lisp_Object *args; 205 Lisp_Object *args;