Function: icalendar--datetime-to-european-date
icalendar--datetime-to-european-date is a byte-compiled function
defined in icalendar.el.gz.
Signature
(icalendar--datetime-to-european-date DATETIME &optional SEPARATOR)
Documentation
Convert the decoded DATETIME to European format.
Optional argument SEPARATOR gives the separator between month, day, and year. If nil a blank character is used as separator. European format: (day month year). FIXME
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar.el.gz
(defun icalendar--datetime-to-european-date (datetime &optional separator)
"Convert the decoded DATETIME to European format.
Optional argument SEPARATOR gives the separator between month,
day, and year. If nil a blank character is used as separator.
European format: (day month year).
FIXME"
(if datetime
(format "%d%s%d%s%d" (nth 3 datetime) ;day
(or separator " ")
(nth 4 datetime) ;month
(or separator " ")
(nth 5 datetime)) ;year
;; datetime == nil
nil))