aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2024-09-28 07:59:16 -0400
committerEli Zaretskii2024-09-28 07:59:16 -0400
commitc90eb98dab09ed4fcb33c1e394a1e0b31f53465e (patch)
tree7ddec25faf6733c1a17d972bda0a1bc0543c4363 /src
parentdaba97699ba04256e782dfa4b88805e5f053a90b (diff)
parente8830015b0714173a1eca75ea606d88bce1af48b (diff)
downloademacs-c90eb98dab09ed4fcb33c1e394a1e0b31f53465e.tar.gz
emacs-c90eb98dab09ed4fcb33c1e394a1e0b31f53465e.zip
Merge from origin/emacs-30
e8830015b07 Require ert-x for use by 'ert-font-lock-deftest-file' a1841b4d8e7 ; * admin/authors.el (authors-aliases): Don't ignore "one... 69d8f9d1b70 Fix php-ts-mode font-lock for latest PHP grammar (bug#73516) 68f53e43488 eieio.texi: Fix bug#73505 53c887fdf6d ; cperl-mode.el: Fix an invalid face specification f5cd5585f46 ; Recommend GNU Find for 'find-dired' 65e589698e6 ; * lisp/filesets.el (filesets-homepage): Fix URL. 1f243a97806 Delete duplicated line in Viper refcard d63bff4d88f Fix Tramp shortdoc integration 759b18a33c0 * lisp/imenu.el (imenu-flatten): More limitations in docs... 794bb2a2e31 remember-data-file: Don't unconditionally call set-visite... 7766ba84199 Align columns in which-key with wide characters properly bd25a98b4e7 bibtex-mode: fix patch bibtex validation for non-file buf... 4729065ee78 Document 'buttonize-region' in manual f189457e5aa ; * lisp/yank-media.el (yank-media-handler): Fix docstrin... 2b53e11a087 Use black-on-white by default for doc-view-svg-face. 32d0c8f6af5 etags-regen-file-extensions: Enable for more extensions 8f265b49e3d ; Fix last change c8ed48b9901 ; Improve documentation of 'append' c1f2501f55d Update and improve UI of sql-read-product (bug#73412) 4f5fc519f09 Insert correct commit data into VC package descriptions 98177d4b3d1 Document reporting security issues in user manual b986e2018a4 * BUGS: Minor copy edit.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index d3ee98c3bae..2de04d06519 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -719,7 +719,12 @@ The result is a list whose elements are the elements of all the arguments.
719Each argument may be a list, vector or string. 719Each argument may be a list, vector or string.
720 720
721All arguments except the last argument are copied. The last argument 721All arguments except the last argument are copied. The last argument
722is just used as the tail of the new list. 722is just used as the tail of the new list. If the last argument is not
723a list, this results in a dotted list.
724
725As an exception, if all the arguments except the last are nil, and the
726last argument is not a list, the return value is that last argument
727unaltered, not a list.
723 728
724usage: (append &rest SEQUENCES) */) 729usage: (append &rest SEQUENCES) */)
725 (ptrdiff_t nargs, Lisp_Object *args) 730 (ptrdiff_t nargs, Lisp_Object *args)