Function: calendar-extract-year
calendar-extract-year is a byte-compiled function defined in
calendar.el.gz.
Signature
(calendar-extract-year DATE)
Documentation
Extract the year part of DATE which has the form (month day year).
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/calendar.el.gz
(defsubst calendar-extract-year (date)
"Extract the year part of DATE which has the form (month day year)."
(nth 2 date))