Function: highlight-changes-remove-highlight

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

Signature

(highlight-changes-remove-highlight BEG END)

Documentation

Remove the change face from the region between BEG and END.

This allows you to manually remove highlighting from uninteresting changes.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/hilit-chg.el.gz
;;;###autoload
(defun highlight-changes-remove-highlight (beg end)
  "Remove the change face from the region between BEG and END.
This allows you to manually remove highlighting from uninteresting changes."
  (interactive "r")
  (with-silent-modifications
    (remove-text-properties beg end '(hilit-chg nil))
    (hilit-chg-fixup beg end)))