Function: semantic-edits-os

semantic-edits-os is a byte-compiled function defined in edit.el.gz.

Signature

(semantic-edits-os CHANGE)

Documentation

For testing: Start of CHANGE, or smaller of (point) and (mark).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/edit.el.gz
;;; Change/Tag Query functions
;;
;; A change (region of space) can effect tags in different ways.
;; These functions perform queries on a buffer to determine different
;; ways that a change effects a buffer.
;;
;; NOTE: After debugging these, replace below to no longer look
;;       at point and mark (via comments I assume.)
(defsubst semantic-edits-os (change)
  "For testing: Start of CHANGE, or smaller of (point) and (mark)."
  (if change (overlay-start change)
    (if (< (point) (mark)) (point) (mark))))