Function: cddr

cddr is a byte-compiled function defined in subr.el.gz.

Signature

(cddr X)

Documentation

Return the cdr of the cdr of X.

Probably introduced at or before Emacs version 20.1.

Source Code

;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defun cddr (x)
  "Return the cdr of the cdr of X."
  (declare (compiler-macro internal--compiler-macro-cXXr))
  (cdr (cdr x)))