diff options
| author | Eli Zaretskii | 2023-08-16 15:42:24 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2023-08-16 15:42:24 +0300 |
| commit | a8c8a4e3680d76254427844b707bb397d77c3984 (patch) | |
| tree | 21f4637f1d4ec2595cc7c64089fd76c27c723248 /src | |
| parent | 205d87cdca09c648da4fc8ec622c135e1655a08b (diff) | |
| download | emacs-a8c8a4e3680d76254427844b707bb397d77c3984.tar.gz emacs-a8c8a4e3680d76254427844b707bb397d77c3984.zip | |
; * src/fns.c (Fcopy_sequence): Doc fix. (Bug#64960)
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 3 |
1 files changed, 2 insertions, 1 deletions
| @@ -734,7 +734,8 @@ usage: (vconcat &rest SEQUENCES) */) | |||
| 734 | DEFUN ("copy-sequence", Fcopy_sequence, Scopy_sequence, 1, 1, 0, | 734 | DEFUN ("copy-sequence", Fcopy_sequence, Scopy_sequence, 1, 1, 0, |
| 735 | doc: /* Return a copy of a list, vector, string, char-table or record. | 735 | doc: /* Return a copy of a list, vector, string, char-table or record. |
| 736 | The elements of a list, vector or record are not copied; they are | 736 | The elements of a list, vector or record are not copied; they are |
| 737 | shared with the original. | 737 | shared with the original. See Info node `(elisp) Sequence Functions' |
| 738 | for more details about this sharing and its effects. | ||
| 738 | If the original sequence is empty, this function may return | 739 | If the original sequence is empty, this function may return |
| 739 | the same empty object instead of its copy. */) | 740 | the same empty object instead of its copy. */) |
| 740 | (Lisp_Object arg) | 741 | (Lisp_Object arg) |