emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r103073: fix docstrings of `purecopy-


From: Sam Steingold
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103073: fix docstrings of `purecopy-cons' & `purecopy-car' per Chong Yidong's request
Date: Tue, 01 Feb 2011 14:17:10 -0500
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103073
committer: Sam Steingold <address@hidden>
branch nick: trunk
timestamp: Tue 2011-02-01 14:17:10 -0500
message:
  fix docstrings of `purecopy-cons' & `purecopy-car' per Chong Yidong's request
modified:
  lisp/subr.el
=== modified file 'lisp/subr.el'
--- a/lisp/subr.el      2011-02-01 18:15:18 +0000
+++ b/lisp/subr.el      2011-02-01 19:17:10 +0000
@@ -2321,10 +2321,10 @@
 ;;;; 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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]