`append' doc string clarification
* src/fns.c (Fappend): Clarify whether arguments are copied.
This commit is contained in:
parent
90d2813f42
commit
126d5b23cf
1 changed files with 4 additions and 1 deletions
|
@ -610,7 +610,10 @@ DEFUN ("append", Fappend, Sappend, 0, MANY, 0,
|
|||
doc: /* Concatenate all the arguments and make the result a list.
|
||||
The result is a list whose elements are the elements of all the arguments.
|
||||
Each argument may be a list, vector or string.
|
||||
The last argument is not copied, just used as the tail of the new list.
|
||||
|
||||
All arguments except the last argument are copied. The last argument
|
||||
is just used as the tail of the new list.
|
||||
|
||||
usage: (append &rest SEQUENCES) */)
|
||||
(ptrdiff_t nargs, Lisp_Object *args)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue