Function: senator-middle-of-tag-p

senator-middle-of-tag-p is a byte-compiled function defined in senator.el.gz.

Signature

(senator-middle-of-tag-p POS TAG)

Documentation

Return non-nil if POS is between start and end of TAG.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/senator.el.gz
(defun senator-middle-of-tag-p (pos tag)
  "Return non-nil if POS is between start and end of TAG."
  (and (> pos (semantic-tag-start tag))
       (< pos (semantic-tag-end   tag))))