From: Karl Heuer Date: Thu, 4 Jan 1996 23:29:58 +0000 (+0000) Subject: (cl-copy-tree): Doc fix. X-Git-Tag: emacs-19.34~1890 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=66ac65bdea01cf8fedf60db841faba5d9850c01e;p=emacs.git (cl-copy-tree): Doc fix. --- 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." (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))))