Function: hilit-chg-bump-change
hilit-chg-bump-change is a byte-compiled function defined in
hilit-chg.el.gz.
Signature
(hilit-chg-bump-change PROP START END)
Documentation
Increment (age) the Highlight Changes mode text property.
Source Code
;; Defined in /usr/src/emacs/lisp/hilit-chg.el.gz
(defun hilit-chg-bump-change (prop start end)
"Increment (age) the Highlight Changes mode text property."
(let ( new-prop )
(if (eq prop 'hilit-chg-delete)
(setq new-prop (nth 2 hilit-chg-list))
(setq new-prop (nth 2 (member prop hilit-chg-list))))
(if prop
(put-text-property start end 'hilit-chg new-prop)
(message "%d-%d unknown property %s not changed" start end prop))))