Mercurial > emacs
comparison src/fns.c @ 1037:c17a6750293c
(Fappend): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 28 Aug 1992 05:45:03 +0000 |
parents | ae5c412a32ec |
children | 2ac1c701fced |
comparison
equal
deleted
inserted
replaced
1036:8b201fcaa592 | 1037:c17a6750293c |
---|---|
182 | 182 |
183 DEFUN ("append", Fappend, Sappend, 0, MANY, 0, | 183 DEFUN ("append", Fappend, Sappend, 0, MANY, 0, |
184 "Concatenate all the arguments and make the result a list.\n\ | 184 "Concatenate all the arguments and make the result a list.\n\ |
185 The result is a list whose elements are the elements of all the arguments.\n\ | 185 The result is a list whose elements are the elements of all the arguments.\n\ |
186 Each argument may be a list, vector or string.\n\ | 186 Each argument may be a list, vector or string.\n\ |
187 The last argument is not copied if it is a list.") | 187 The last argument is not copied, just used as the tail of the new list.") |
188 (nargs, args) | 188 (nargs, args) |
189 int nargs; | 189 int nargs; |
190 Lisp_Object *args; | 190 Lisp_Object *args; |
191 { | 191 { |
192 return concat (nargs, args, Lisp_Cons, 1); | 192 return concat (nargs, args, Lisp_Cons, 1); |