Variable: todo-nondiary-marker
todo-nondiary-marker is a customizable variable defined in
todo-mode.el.gz.
Value
("[" "]")
Documentation
List of strings surrounding item date to block diary inclusion.
The first string is inserted before the item date and must be a non-empty string that does not match a diary date in order to have its intended effect. The second string is inserted after the diary date.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defcustom todo-nondiary-marker '("[" "]")
"List of strings surrounding item date to block diary inclusion.
The first string is inserted before the item date and must be a
non-empty string that does not match a diary date in order to
have its intended effect. The second string is inserted after
the diary date."
:type '(list string string)
:group 'todo-edit
:initialize #'custom-initialize-default
:set #'todo-reset-nondiary-marker)