diff options
| author | Glenn Morris | 2021-10-25 09:34:37 -0700 |
|---|---|---|
| committer | Glenn Morris | 2021-10-25 09:34:37 -0700 |
| commit | f2dfe1e780f0a779f50650fcf457b33031fa9584 (patch) | |
| tree | 8bfd35530648a3aedf6a66a92bda21c61db96ad9 /src | |
| parent | d1e4d89b325af255644cb030ba9e5bdae7c2d69c (diff) | |
| parent | 817c929edaf77dbdcd2ce7b9e6bbd3a5c57604f1 (diff) | |
| download | emacs-f2dfe1e780f0a779f50650fcf457b33031fa9584.tar.gz emacs-f2dfe1e780f0a779f50650fcf457b33031fa9584.zip | |
Merge from origin/emacs-28
817c929eda Doc fix for concat
3eca2ad2a1 * lisp/image-dired.el (image-dired-external-viewer): Suppo...
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 | { |