diff options
| author | Richard M. Stallman | 1994-01-23 23:23:42 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-01-23 23:23:42 +0000 |
| commit | 27d0b45aa7b0061dd9523f10da275df53d1be96e (patch) | |
| tree | c1841250af08053c2a1e4a1966ee0c059029a28c /src | |
| parent | 45449f995e880b7244000d6578b8efc7d7a2e7d9 (diff) | |
| download | emacs-27d0b45aa7b0061dd9523f10da275df53d1be96e.tar.gz emacs-27d0b45aa7b0061dd9523f10da275df53d1be96e.zip | |
(Fconcat): Doc fix.
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; |