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.
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."
(icalendar--dmsg "non-recurring all-day event")
(format "%%%%(and (diary-block %s %s))" start-d end-d))