Function: todo-more-important-p

todo-more-important-p is a byte-compiled function defined in otodo-mode.el.gz.

Signature

(todo-more-important-p LINE)

Documentation

Ask whether entry is more important than the one at LINE.

Aliases

todo-ask-p

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/otodo-mode.el.gz
(defun todo-more-important-p (line)
  "Ask whether entry is more important than the one at LINE."
  (unless (equal todo-previous-line line)
    (setq todo-previous-line line)
    (goto-char (point-min))
    (forward-line (1- todo-previous-line))
    (let ((item (todo-item-string-start)))
      (setq todo-previous-answer
            (y-or-n-p (format-message "More important than `%s'? " item)))))
  todo-previous-answer)