Function: semantic-edits-oe
semantic-edits-oe is a byte-compiled function defined in edit.el.gz.
Signature
(semantic-edits-oe CHANGE)
Documentation
For testing: End of CHANGE, or larger of (point) and (mark).
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/edit.el.gz
(defsubst semantic-edits-oe (change)
"For testing: End of CHANGE, or larger of (point) and (mark)."
(if change (overlay-end change)
(if (> (point) (mark)) (point) (mark))))