Function: highlight-changes-next-change
highlight-changes-next-change is an autoloaded, interactive and
byte-compiled function defined in hilit-chg.el.gz.
Signature
(highlight-changes-next-change)
Documentation
Move to the beginning of the next change, if in Highlight Changes mode.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/hilit-chg.el.gz
;;;###autoload
(defun highlight-changes-next-change ()
"Move to the beginning of the next change, if in Highlight Changes mode."
(interactive)
(if highlight-changes-mode
(let ((start (point))
prop)
(setq prop (get-text-property (point) 'hilit-chg))
(if prop
;; we are in a change
(setq start (next-single-property-change (point) 'hilit-chg)))
(if start
(setq start (next-single-property-change start 'hilit-chg)))
(if start
(goto-char start)
(message "no next change")))
(message "This buffer is not in Highlight Changes mode.")))