Function: todo-item-start
todo-item-start is a byte-compiled function defined in
otodo-mode.el.gz.
Signature
(todo-item-start)
Documentation
Go to start of current TODO list item and return point.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/otodo-mode.el.gz
(defun todo-item-start ()
"Go to start of current TODO list item and return point."
(beginning-of-line)
(if (not (looking-at (regexp-quote todo-prefix)))
(search-backward-regexp
(concat "^" (regexp-quote todo-prefix)) nil t))
(point))