Variable: todo-undo-item-omit-comment

todo-undo-item-omit-comment is a customizable variable defined in todo-mode.el.gz.

Value

ask

Documentation

Whether to omit done item comment on undoing the item.

Nil means never omit the comment, t means always omit it, ask means prompt user and omit comment only on confirmation.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defcustom todo-undo-item-omit-comment 'ask
  "Whether to omit done item comment on undoing the item.
Nil means never omit the comment, t means always omit it, `ask'
means prompt user and omit comment only on confirmation."
  :type '(choice (const :tag "Never" nil)
		 (const :tag "Always" t)
		 (const :tag "Ask" ask))
  :group 'todo-edit)