Variable: org-clock-task-overrun-text
org-clock-task-overrun-text is a customizable variable defined in
org-clock.el.gz.
Value
nil
Documentation
Extra mode line text to indicate that the clock is overrun.
The can be nil to indicate that instead of adding text, the clock time
should get a different face (org-mode-line-clock-overrun).
When this is a string, it is prepended to the clock string as an indication,
also using the face org-mode-line-clock-overrun.
This variable was added, or its default value changed, in Emacs 24.1.
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-clock.el.gz
(defcustom org-clock-task-overrun-text nil
"Extra mode line text to indicate that the clock is overrun.
The can be nil to indicate that instead of adding text, the clock time
should get a different face (`org-mode-line-clock-overrun').
When this is a string, it is prepended to the clock string as an indication,
also using the face `org-mode-line-clock-overrun'."
:group 'org-clock
:version "24.1"
:type '(choice
(const :tag "Just mark the time string" nil)
(string :tag "Text to prepend")))