diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-09-24 11:43:04 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-09-24 11:43:04 +0200 |
commit | 126d5b23cf252ceae537a686e46ba86c0591e658 (patch) | |
tree | 868d36a938945a3d944ea0ffeccc44b08a6ed3d3 /src/fns.c | |
parent | 90d2813f42678bbb5d22fbb6f59523ba567c6f36 (diff) | |
download | emacs-126d5b23cf252ceae537a686e46ba86c0591e658.tar.gz emacs-126d5b23cf252ceae537a686e46ba86c0591e658.tar.bz2 emacs-126d5b23cf252ceae537a686e46ba86c0591e658.zip |
`append' doc string clarification
* src/fns.c (Fappend): Clarify whether arguments are copied.
Diffstat (limited to 'src/fns.c')
-rw-r--r-- | src/fns.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c index 9dd10fe4438..d2f1aadb65c 100644 --- a/src/fns.c +++ b/src/fns.c @@ -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) { |