Function: senator-step-at-start-end-p
senator-step-at-start-end-p is a byte-compiled function defined in
senator.el.gz.
Signature
(senator-step-at-start-end-p TAG)
Documentation
Return non-nil if must step at start and end of TAG.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/senator.el.gz
(defun senator-step-at-start-end-p (tag)
"Return non-nil if must step at start and end of TAG."
(and tag
(or (eq senator-step-at-start-end-tag-classes t)
(memq (semantic-tag-class tag)
senator-step-at-start-end-tag-classes))))