Function: calendar-extract-day

calendar-extract-day is a byte-compiled function defined in calendar.el.gz.

Signature

(calendar-extract-day DATE)

Documentation

Extract the day part of DATE which has the form (month day year).

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/calendar.el.gz
;; Note gives wrong answer for result of (calendar-read-date 'noday),
;; but that is only used by `calendar-other-month'.
(defsubst calendar-extract-day (date)
  "Extract the day part of DATE which has the form (month day year)."
  (cadr date))