Function: cadr
cadr is a byte-compiled function defined in subr.el.gz.
Signature
(cadr X)
Documentation
Return the car of the cdr of X.
Probably introduced at or before Emacs version 20.1.
Aliases
cl-second
second (obsolete since 27.1)
-second-item
smie-op-right
Source Code
;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defun cadr (x)
"Return the car of the cdr of X."
(declare (side-effect-free t)
(compiler-macro internal--compiler-macro-cXXr))
(car (cdr x)))