aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-08-23 18:53:50 +0000
committerRichard M. Stallman1997-08-23 18:53:50 +0000
commit2a21e93c912d251e68f4c6d18f8185031ef181ba (patch)
tree02ef01d593ee5eaa72f47b504153bc38ed058176
parent0e6bb54e127b1715dcf39a9082e65fe80e4c9339 (diff)
downloademacs-2a21e93c912d251e68f4c6d18f8185031ef181ba.tar.gz
emacs-2a21e93c912d251e68f4c6d18f8185031ef181ba.zip
(caar, cadr, cdar, cddr): Definitiosn deleted.
-rw-r--r--lisp/emacs-lisp/cl.el16
1 files changed, 0 insertions, 16 deletions
diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el
index 720e56fa439..72320d57e30 100644
--- a/lisp/emacs-lisp/cl.el
+++ b/lisp/emacs-lisp/cl.el
@@ -403,22 +403,6 @@ SEQ, this is like `mapcar'. With several, it is like the Common Lisp
403 "Return the tenth element of the list LIST." 403 "Return the tenth element of the list LIST."
404 (nth 9 x)) 404 (nth 9 x))
405 405
406(defun caar (x)
407 "Return the `car' of the `car' of X."
408 (car (car x)))
409
410(defun cadr (x)
411 "Return the `car' of the `cdr' of X."
412 (car (cdr x)))
413
414(defun cdar (x)
415 "Return the `cdr' of the `car' of X."
416 (cdr (car x)))
417
418(defun cddr (x)
419 "Return the `cdr' of the `cdr' of X."
420 (cdr (cdr x)))
421
422(defun caaar (x) 406(defun caaar (x)
423 "Return the `car' of the `car' of the `car' of X." 407 "Return the `car' of the `car' of the `car' of X."
424 (car (car (car x)))) 408 (car (car (car x))))