Function: todo-convert-legacy-date-time
todo-convert-legacy-date-time is a byte-compiled function defined in
todo-mode.el.gz.
Signature
(todo-convert-legacy-date-time)
Documentation
Return converted date-time string.
Helper function for todo-convert-legacy-files.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defun todo-convert-legacy-date-time ()
"Return converted date-time string.
Helper function for `todo-convert-legacy-files'."
(calendar-dlet
((year (match-string 1))
(month (match-string 2))
(monthname (calendar-month-name (string-to-number month) t))
(day (match-string 3))
(time (match-string 4))
dayname)
(replace-match "")
(insert (mapconcat #'eval calendar-date-display-form "")
(when time (concat " " time)))))