Function: semantic-mru-bookmark-change-hook-fcn
semantic-mru-bookmark-change-hook-fcn is a byte-compiled function
defined in mru-bookmark.el.gz.
Signature
(semantic-mru-bookmark-change-hook-fcn OVERLAY)
Documentation
Function set into semantic-edits-new/move-change-hooks.
Argument OVERLAY is the overlay created to mark the change. This function pushes tags onto the tag ring.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/mru-bookmark.el.gz
(defun semantic-mru-bookmark-change-hook-fcn (overlay)
"Function set into `semantic-edits-new/move-change-hook's.
Argument OVERLAY is the overlay created to mark the change.
This function pushes tags onto the tag ring."
;; Dup?
(when (not (eq overlay semantic-mrub-last-overlay))
(setq semantic-mrub-last-overlay overlay)
(semantic-mrub-push semantic-mru-bookmark-ring
(point)
'edit)))