Function: todo-lower-item
todo-lower-item is an interactive and byte-compiled function defined
in otodo-mode.el.gz.
Signature
(todo-lower-item)
Documentation
Lower priority of current entry.
Key Bindings
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/otodo-mode.el.gz
(defun todo-lower-item ()
"Lower priority of current entry."
(interactive)
(if (> (count-lines (point) (point-max)) 1)
;; Assume there is a final newline
(let ((item (todo-item-string)))
(todo-remove-item)
(todo-forward-item)
(save-excursion
(insert item "\n"))
(message ""))
(error "No TODO list entry to lower")))