aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-01-23 23:23:42 +0000
committerRichard M. Stallman1994-01-23 23:23:42 +0000
commit27d0b45aa7b0061dd9523f10da275df53d1be96e (patch)
treec1841250af08053c2a1e4a1966ee0c059029a28c /src
parent45449f995e880b7244000d6578b8efc7d7a2e7d9 (diff)
downloademacs-27d0b45aa7b0061dd9523f10da275df53d1be96e.tar.gz
emacs-27d0b45aa7b0061dd9523f10da275df53d1be96e.zip
(Fconcat): Doc fix.
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;