Function: highlight-changes-visible-mode

highlight-changes-visible-mode is an autoloaded, interactive and byte-compiled function defined in hilit-chg.el.gz.

Signature

(highlight-changes-visible-mode &optional ARG)

Documentation

Toggle visibility of highlighting due to Highlight Changes mode.

This is a minor mode. If called interactively, toggle the Highlight-Changes-Visible 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 highlight-changes-visible-mode(var)/highlight-changes-visible-mode(fun).

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

Highlight Changes Visible mode only has an effect when Highlight Changes mode is on. When enabled, the changed text is displayed in a distinctive face.

The default value can be customized with variable highlight-changes-visibility-initial-state.

This command does not itself set Highlight Changes mode.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/hilit-chg.el.gz
;;;###autoload
(define-minor-mode highlight-changes-visible-mode
  "Toggle visibility of highlighting due to Highlight Changes mode.

Highlight Changes Visible mode only has an effect when Highlight
Changes mode is on.  When enabled, the changed text is displayed
in a distinctive face.

The default value can be customized with variable
`highlight-changes-visibility-initial-state'.

This command does not itself set Highlight Changes mode."
  :init-value t
  (hilit-chg-update))