Function: cdaadr
cdaadr is a byte-compiled function defined in subr.el.gz.
Signature
(cdaadr X)
Documentation
Return the cdr of the car of the car of the cdr of X.
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defun cdaadr (x)
"Return the `cdr' of the `car' of the `car' of the `cdr' of X."
(declare (compiler-macro internal--compiler-macro-cXXr))
(cdr (car (car (cdr x)))))