Function: todo-entry-timestamp-initials
todo-entry-timestamp-initials is a byte-compiled function defined in
otodo-mode.el.gz.
Signature
(todo-entry-timestamp-initials)
Documentation
Prepend timestamp and your initials to the head of a TODO entry.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/otodo-mode.el.gz
(defun todo-entry-timestamp-initials ()
"Prepend timestamp and your initials to the head of a TODO entry."
(let ((time-stamp-format todo-time-string-format))
(concat (time-stamp-string) " " todo-initials ": ")))