From: Richard M. Stallman Date: Sun, 23 Jan 1994 23:23:42 +0000 (+0000) Subject: (Fconcat): Doc fix. X-Git-Tag: emacs-19.34~10187 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=27d0b45aa7b0061dd9523f10da275df53d1be96e;p=emacs.git (Fconcat): Doc fix. --- 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.") DEFUN ("concat", Fconcat, Sconcat, 0, MANY, 0, "Concatenate all the arguments and make the result a string.\n\ The result is a string whose elements are the elements of all the arguments.\n\ -Each argument may be a string, a list of numbers, or a vector of numbers.") +Each argument may be a string, a list of characters (integers),\n\ +or a vector of characters (integers).") (nargs, args) int nargs; Lisp_Object *args;