diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-08-23 18:53:50 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-08-23 18:53:50 +0000 |
commit | 2a21e93c912d251e68f4c6d18f8185031ef181ba (patch) | |
tree | 02ef01d593ee5eaa72f47b504153bc38ed058176 /lisp/emacs-lisp/cl.el | |
parent | 0e6bb54e127b1715dcf39a9082e65fe80e4c9339 (diff) | |
download | emacs-2a21e93c912d251e68f4c6d18f8185031ef181ba.tar.gz |
(caar, cadr, cdar, cddr): Definitiosn deleted.
Diffstat (limited to 'lisp/emacs-lisp/cl.el')
-rw-r--r-- | lisp/emacs-lisp/cl.el | 16 |
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 "Return the tenth element of the list LIST." (nth 9 x)) -(defun caar (x) - "Return the `car' of the `car' of X." - (car (car x))) - -(defun cadr (x) - "Return the `car' of the `cdr' of X." - (car (cdr x))) - -(defun cdar (x) - "Return the `cdr' of the `car' of X." - (cdr (car x))) - -(defun cddr (x) - "Return the `cdr' of the `cdr' of X." - (cdr (cdr x))) - (defun caaar (x) "Return the `car' of the `car' of the `car' of X." (car (car (car x)))) |