Variable: todo-item-mark

todo-item-mark is a customizable variable defined in todo-mode.el.gz.

Value

#("*" 0 1 (face todo-mark))

Documentation

String used to mark items.

To ensure item marking works, change the value of this option only when no items are marked.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defcustom todo-item-mark "*"
  "String used to mark items.
To ensure item marking works, change the value of this option
only when no items are marked."
  :type '(string :validate
		 (lambda (widget)
		   (when (string= (widget-value widget) todo-prefix)
		     (widget-put
		      widget :error
		      (format-message
		       "Invalid value: must be distinct from `todo-prefix'"))
		     widget)))
  :set (lambda (symbol value)
	 (custom-set-default symbol (propertize value 'face 'todo-mark)))
  :group 'todo-edit)