Function: icalendar--convert-non-recurring-not-all-day-to-diary
icalendar--convert-non-recurring-not-all-day-to-diary is a
byte-compiled function defined in icalendar.el.gz.
Signature
(icalendar--convert-non-recurring-not-all-day-to-diary DTSTART-DEC START-T END-T)
Documentation
Convert recurring icalendar EVENT to diary format.
DTSTART-DEC is the decoded DTSTART property of E. START-T is the event's start time in diary format. END-T is the event's end time in diary format.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar.el.gz
(defun icalendar--convert-non-recurring-not-all-day-to-diary (dtstart-dec
start-t
end-t)
"Convert recurring icalendar EVENT to diary format.
DTSTART-DEC is the decoded DTSTART property of E.
START-T is the event's start time in diary format.
END-T is the event's end time in diary format."
(icalendar--dmsg "not all day event")
(cond (end-t
(format "%s %s-%s"
(icalendar--datetime-to-diary-date
dtstart-dec "/")
start-t end-t))
(t
(format "%s %s"
(icalendar--datetime-to-diary-date
dtstart-dec "/")
start-t))))