Mercurial > emacs
changeset 13970:cdd61cb79be4
(cl-copy-tree): Doc fix.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 04 Jan 1996 23:29:58 +0000 |
parents | 8fd836e88aec |
children | 49207f2e2130 |
files | lisp/emacs-lisp/cl-extra.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/cl-extra.el Thu Jan 04 23:28:24 1996 +0000 +++ b/lisp/emacs-lisp/cl-extra.el Thu Jan 04 23:29:58 1996 +0000 @@ -588,7 +588,7 @@ (defun cl-copy-tree (tree &optional vecp) "Make a copy of TREE. If TREE is a cons cell, this recursively copies both its car and its cdr. -Constrast to copy-sequence, which copies only along the cdrs. With second +Contrast to copy-sequence, which copies only along the cdrs. With second argument VECP, this copies vectors as well as conses." (if (consp tree) (let ((p (setq tree (copy-list tree))))