Function: icalendar-date<=

icalendar-date<= is a byte-compiled function defined in icalendar-utils.el.gz.

Signature

(icalendar-date<= DT1 DT2)

Documentation

Return non-nil if date DT1 is earlier than or the same date as DT2.

DT1 and DT2 must both be icalendar-date values of the form (MONTH DAY YEAR).

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-utils.el.gz
(defun ical:date<= (dt1 dt2)
  "Return non-nil if date DT1 is earlier than or the same date as DT2.
DT1 and DT2 must both be `icalendar-date' values of the form (MONTH DAY YEAR)."
  (or (calendar-date-equal dt1 dt2) (ical:date< dt1 dt2)))