Variable: todo-done-separator-string

todo-done-separator-string is a customizable variable defined in todo-mode.el.gz.

Value

"="

Documentation

String determining the value of variable todo-done-separator(var)/todo-done-separator(fun).

If the string consists of a single character, todo-done-separator(var)/todo-done-separator(fun) will be the string made by repeating this character for the width of the window, and the length is automatically recalculated when the window width changes. If the string consists of more (or less) than one character, it will be the value of todo-done-separator(var)/todo-done-separator(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defcustom todo-done-separator-string "="
  "String determining the value of variable `todo-done-separator'.
If the string consists of a single character,
`todo-done-separator' will be the string made by repeating this
character for the width of the window, and the length is
automatically recalculated when the window width changes.  If the
string consists of more (or less) than one character, it will be
the value of `todo-done-separator'."
  :type 'string
  :initialize #'custom-initialize-default
  :set #'todo-reset-done-separator-string
  :group 'todo-display)