Function: icalendar--convert-non-recurring-all-day-to-diary

icalendar--convert-non-recurring-all-day-to-diary is a byte-compiled function defined in icalendar.el.gz.

This function is obsolete since 31.1; use diary-icalendar-format-time-range instead.

Signature

(icalendar--convert-non-recurring-all-day-to-diary START-D END-D)

Documentation

Convert non-recurring iCalendar EVENT to diary format.

DTSTART is the decoded DTSTART property of E. Argument START-D gives the first day. Argument END-D gives the last day.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar.el.gz
(defun icalendar--convert-non-recurring-all-day-to-diary (start-d end-d)
  "Convert non-recurring iCalendar EVENT to diary format.

DTSTART is the decoded DTSTART property of E.
Argument START-D gives the first day.
Argument END-D gives the last day."
  (declare (obsolete diary-icalendar-format-time-range "31.1"))
  (icalendar--dmsg "non-recurring all-day event")
  (format "%%%%(and (diary-block %s %s))" start-d end-d))