summaryrefslogtreecommitdiff
path: root/lisp/subr.el
diff options
context:
space:
mode:
authorSam Steingold <sds@gnu.org>2011-02-01 16:37:12 -0500
committerSam Steingold <sds@gnu.org>2011-02-01 16:37:12 -0500
commite8e4d5c88e04390481b3156c0e5efe40979d8519 (patch)
tree91e183a5d20a036e1e03c544e693adfa8b09ec73 /lisp/subr.el
parentabef340a0c5304054a2a5e6d95e1d825501f0e7a (diff)
downloademacs-e8e4d5c88e04390481b3156c0e5efe40979d8519.tar.gz
undo 2011-02-01T18:15:18Z!sds@gnu.org (purecopy-cons, purecopy-car) at Stefan Monnier's request
Diffstat (limited to 'lisp/subr.el')
-rw-r--r--lisp/subr.el7
1 files changed, 0 insertions, 7 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 2eca62c0e45..3330fa20379 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -2320,13 +2320,6 @@ BEG and END default respectively to the beginning and end of buffer."
;;;; Miscellanea.
-(defun purecopy-cons (arg)
- "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)
- "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
"Normal hook run by `suspend-emacs', before suspending.")