aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIhor Radchenko2021-06-24 22:33:08 +0800
committerStefan Kangas2021-10-24 14:13:15 +0200
commit817c929edaf77dbdcd2ce7b9e6bbd3a5c57604f1 (patch)
treef91c5f487453fdb4f91c71446a2bec4021b7fefe /src
parent3eca2ad2a10224aed82c2d32fb3056507cd9eacb (diff)
downloademacs-817c929edaf77dbdcd2ce7b9e6bbd3a5c57604f1.tar.gz
emacs-817c929edaf77dbdcd2ce7b9e6bbd3a5c57604f1.zip
Doc fix for concat
* src/fns.c (Fconcat): Note that composition values may not remain eq in return value of concat. (Bug#48740)
Diffstat (limited to 'src')
-rw-r--r--src/fns.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fns.c b/src/fns.c
index a72e41aee5b..6f358dd1ba4 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -672,6 +672,9 @@ DEFUN ("concat", Fconcat, Sconcat, 0, MANY, 0,
672 doc: /* Concatenate all the arguments and make the result a string. 672 doc: /* Concatenate all the arguments and make the result a string.
673The result is a string whose elements are the elements of all the arguments. 673The result is a string whose elements are the elements of all the arguments.
674Each argument may be a string or a list or vector of characters (integers). 674Each argument may be a string or a list or vector of characters (integers).
675
676Values of the `composition' property of the result are not guaranteed
677to be `eq'.
675usage: (concat &rest SEQUENCES) */) 678usage: (concat &rest SEQUENCES) */)
676 (ptrdiff_t nargs, Lisp_Object *args) 679 (ptrdiff_t nargs, Lisp_Object *args)
677{ 680{