Function: type-break-mode-line-message-mode

type-break-mode-line-message-mode is an interactive and byte-compiled function defined in type-break.el.gz.

Signature

(type-break-mode-line-message-mode &optional ARG)

Documentation

Toggle warnings about typing breaks in the mode line.

This is a minor mode. If called interactively, toggle the Type-Break-Mode-Line-Message mode mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode.

If called from Lisp, toggle the mode if ARG is toggle. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number.

To check whether the minor mode is enabled in the current buffer, evaluate (default-value \=type-break-mode-line-message-mode)'.

The mode's hook is called both when the mode is enabled and when it is disabled.

The user may also enable or disable this mode simply by setting the variable of the same name.

Variables controlling the display of messages in the mode line include:

        mode-line-format
        global-mode-string
        type-break-mode-line-break-message
        type-break-mode-line-warning

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/type-break.el.gz
(define-minor-mode type-break-mode-line-message-mode
  "Toggle warnings about typing breaks in the mode line.

The user may also enable or disable this mode simply by setting
the variable of the same name.

Variables controlling the display of messages in the mode line include:

        `mode-line-format'
        `global-mode-string'
        `type-break-mode-line-break-message'
        `type-break-mode-line-warning'"
  :global t :group 'type-break)