Function: hilit-chg-hide-changes
hilit-chg-hide-changes is a byte-compiled function defined in
hilit-chg.el.gz.
Signature
(hilit-chg-hide-changes &optional BEG END)
Documentation
Remove face information for Highlight Changes mode.
The overlay containing the face is removed, but the text property containing the change information is retained.
This is the opposite of hilit-chg-display-changes.
Source Code
;; Defined in /usr/src/emacs/lisp/hilit-chg.el.gz
(defun hilit-chg-hide-changes (&optional beg end)
"Remove face information for Highlight Changes mode.
The overlay containing the face is removed, but the text property
containing the change information is retained.
This is the opposite of `hilit-chg-display-changes'."
(let ((start (or beg (point-min)))
(limit (or end (point-max))))
(dolist (p (overlays-in start limit))
;; don't delete the overlay if it isn't ours!
(if (overlay-get p 'hilit-chg)
(delete-overlay p)))))