Function: todo-item-string-start
todo-item-string-start is a byte-compiled function defined in
otodo-mode.el.gz.
Signature
(todo-item-string-start)
Documentation
Return the start of this TODO list entry as a string.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/otodo-mode.el.gz
(defun todo-item-string-start ()
"Return the start of this TODO list entry as a string."
;; Suitable for putting in the minibuffer when asking the user
(let ((item (todo-item-string)))
(if (> (length item) 60)
(setq item (concat (substring item 0 56) "...")))
item))