fix docstrings of `purecopy-cons' & `purecopy-car' per Chong Yidong's request
authorSam Steingold <sds@gnu.org>
Tue, 1 Feb 2011 19:17:10 +0000 (14:17 -0500)
committerSam Steingold <sds@gnu.org>
Tue, 1 Feb 2011 19:17:10 +0000 (14:17 -0500)
lisp/subr.el

index 45afbb3..2eca62c 100644 (file)
@@ -2321,10 +2321,10 @@ BEG and END default respectively to the beginning and end of buffer."
 ;;;; Miscellanea.
 
 (defun purecopy-cons (arg)
-  "Purecopy both car and cdr of the pair argument."
+  "Return a copy of ARG from a `purecopy' of the car and cdr of ARG."
   (cons (purecopy (car arg)) (purecopy (cdr arg))))
 (defun purecopy-car (arg)
-  "Purecopy the car of the pair argument."
+  "Return a copy of ARG whose car is a `purecopy' of the car of ARG."
   (cons (purecopy (car arg)) (cdr arg)))
 
 (defvar suspend-hook nil