diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 4 |
1 files changed, 3 insertions, 1 deletions
| @@ -482,7 +482,9 @@ usage: (vconcat &rest SEQUENCES) */) | |||
| 482 | DEFUN ("copy-sequence", Fcopy_sequence, Scopy_sequence, 1, 1, 0, | 482 | DEFUN ("copy-sequence", Fcopy_sequence, Scopy_sequence, 1, 1, 0, |
| 483 | doc: /* Return a copy of a list, vector, string, char-table or record. | 483 | doc: /* Return a copy of a list, vector, string, char-table or record. |
| 484 | The elements of a list, vector or record are not copied; they are | 484 | The elements of a list, vector or record are not copied; they are |
| 485 | shared with the original. */) | 485 | shared with the original. |
| 486 | If the original sequence is empty, this function may return | ||
| 487 | the same empty object instead of its copy. */) | ||
| 486 | (Lisp_Object arg) | 488 | (Lisp_Object arg) |
| 487 | { | 489 | { |
| 488 | if (NILP (arg)) return arg; | 490 | if (NILP (arg)) return arg; |