diff options
| author | Karl Heuer | 1996-01-04 23:29:58 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-04 23:29:58 +0000 |
| commit | 66ac65bdea01cf8fedf60db841faba5d9850c01e (patch) | |
| tree | bcddf861b156fe1039ef80d15ba84a232df65d7a | |
| parent | 3b526baee9a2241aa4e1bdb429936dd318af6039 (diff) | |
| download | emacs-66ac65bdea01cf8fedf60db841faba5d9850c01e.tar.gz emacs-66ac65bdea01cf8fedf60db841faba5d9850c01e.zip | |
(cl-copy-tree): Doc fix.
| -rw-r--r-- | lisp/emacs-lisp/cl-extra.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-extra.el b/lisp/emacs-lisp/cl-extra.el index d60b277bca6..bf57c414ff0 100644 --- a/lisp/emacs-lisp/cl-extra.el +++ b/lisp/emacs-lisp/cl-extra.el | |||
| @@ -588,7 +588,7 @@ If START or END is negative, it counts from the end." | |||
| 588 | (defun cl-copy-tree (tree &optional vecp) | 588 | (defun cl-copy-tree (tree &optional vecp) |
| 589 | "Make a copy of TREE. | 589 | "Make a copy of TREE. |
| 590 | If TREE is a cons cell, this recursively copies both its car and its cdr. | 590 | If TREE is a cons cell, this recursively copies both its car and its cdr. |
| 591 | Constrast to copy-sequence, which copies only along the cdrs. With second | 591 | Contrast to copy-sequence, which copies only along the cdrs. With second |
| 592 | argument VECP, this copies vectors as well as conses." | 592 | argument VECP, this copies vectors as well as conses." |
| 593 | (if (consp tree) | 593 | (if (consp tree) |
| 594 | (let ((p (setq tree (copy-list tree)))) | 594 | (let ((p (setq tree (copy-list tree)))) |