]> git.eshelyaron.com Git - emacs.git/commitdiff
`append' doc string clarification
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 24 Sep 2022 09:43:04 +0000 (11:43 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 24 Sep 2022 09:43:04 +0000 (11:43 +0200)
* src/fns.c (Fappend): Clarify whether arguments are copied.

src/fns.c

index 9dd10fe44389e522179dec2ad9701dac3503602d..d2f1aadb65cd856b35d1b97b4460ea8ef067bc97 100644 (file)
--- 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)
 {