Function: hilit-chg-fixup

hilit-chg-fixup is a byte-compiled function defined in hilit-chg.el.gz.

Signature

(hilit-chg-fixup BEG END)

Documentation

Fix change overlays in region between BEG and END.

Ensure the overlays agree with the changes as determined from the text properties of type hilit-chg.

Source Code

;; Defined in /usr/src/emacs/lisp/hilit-chg.el.gz
(defun hilit-chg-fixup (beg end)
  "Fix change overlays in region between BEG and END.

Ensure the overlays agree with the changes as determined from
the text properties of type `hilit-chg'."
  ;; Remove or alter overlays in region beg..end
  (remove-overlays beg end 'hilit-chg t)
  (hilit-chg-display-changes beg end))