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

second (obsolete since 27.1) cl-second -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 (compiler-macro internal--compiler-macro-cXXr))
  (car (cdr x)))