Function: icalendar--datetime-to-diary-date

icalendar--datetime-to-diary-date is a byte-compiled function defined in icalendar.el.gz.

This function is obsolete since 31.1; use icalendar-date/time-to-date and diary-icalendar-format-date instead.

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."
  (declare (obsolete "use `icalendar-date/time-to-date' and `diary-icalendar-format-date' instead." "31.1"))
  (funcall (intern-soft (format "icalendar--datetime-to-%s-date"
                                calendar-date-style))
           datetime separator))