Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
2a21e93c
Commit
2a21e93c
authored
Aug 23, 1997
by
Richard M. Stallman
Browse files
(caar, cadr, cdar, cddr): Definitiosn deleted.
parent
0e6bb54e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
16 deletions
+0
-16
lisp/emacs-lisp/cl.el
lisp/emacs-lisp/cl.el
+0
-16
No files found.
lisp/emacs-lisp/cl.el
View file @
2a21e93c
...
...
@@ -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
))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment