diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 3 |
1 files changed, 2 insertions, 1 deletions
| @@ -198,7 +198,8 @@ The last argument is not copied, just used as the tail of the new list.") | |||
| 198 | DEFUN ("concat", Fconcat, Sconcat, 0, MANY, 0, | 198 | DEFUN ("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\ |
| 200 | The result is a string whose elements are the elements of all the arguments.\n\ | 200 | The result is a string whose elements are the elements of all the arguments.\n\ |
| 201 | Each argument may be a string, a list of numbers, or a vector of numbers.") | 201 | Each argument may be a string, a list of characters (integers),\n\ |
| 202 | or 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; |