diff options
| author | Ihor Radchenko | 2021-06-24 22:33:08 +0800 |
|---|---|---|
| committer | Stefan Kangas | 2021-10-24 14:13:15 +0200 |
| commit | 817c929edaf77dbdcd2ce7b9e6bbd3a5c57604f1 (patch) | |
| tree | f91c5f487453fdb4f91c71446a2bec4021b7fefe /src | |
| parent | 3eca2ad2a10224aed82c2d32fb3056507cd9eacb (diff) | |
| download | emacs-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.c | 3 |
1 files changed, 3 insertions, 0 deletions
| @@ -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. |
| 673 | The result is a string whose elements are the elements of all the arguments. | 673 | The result is a string whose elements are the elements of all the arguments. |
| 674 | Each argument may be a string or a list or vector of characters (integers). | 674 | Each argument may be a string or a list or vector of characters (integers). |
| 675 | |||
| 676 | Values of the `composition' property of the result are not guaranteed | ||
| 677 | to be `eq'. | ||
| 675 | usage: (concat &rest SEQUENCES) */) | 678 | usage: (concat &rest SEQUENCES) */) |
| 676 | (ptrdiff_t nargs, Lisp_Object *args) | 679 | (ptrdiff_t nargs, Lisp_Object *args) |
| 677 | { | 680 | { |