Function: icalendar--datetime-to-diary-date
icalendar--datetime-to-diary-date is a byte-compiled function defined
in icalendar.el.gz.
Signature
(icalendar--datetime-to-diary-date DATETIME &optional SEPARATOR)
Documentation
Convert the decoded DATETIME to diary format.
Optional argument SEPARATOR gives the separator between month, day, and year. If nil a blank character is used as separator. Call icalendar--datetime-to-*-date according to the current calendar date style.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar.el.gz
(defun icalendar--datetime-to-diary-date (datetime &optional separator)
"Convert the decoded DATETIME to diary format.
Optional argument SEPARATOR gives the separator between month,
day, and year. If nil a blank character is used as separator.
Call icalendar--datetime-to-*-date according to the current
calendar date style."
(funcall (intern-soft (format "icalendar--datetime-to-%s-date"
calendar-date-style))
datetime separator))