Mercurial > emacs
changeset 19490:04b0c835c0eb
(caar, cadr, cdar, cddr): Definitiosn deleted.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 23 Aug 1997 18:53:50 +0000 |
parents | e8c4bdc27fc2 |
children | f5fd22f3462c |
files | lisp/emacs-lisp/cl.el |
diffstat | 1 files changed, 0 insertions(+), 16 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/cl.el Sat Aug 23 18:30:53 1997 +0000 +++ b/lisp/emacs-lisp/cl.el Sat Aug 23 18:53:50 1997 +0000 @@ -403,22 +403,6 @@ "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))))