Function: semantic-tag-boundary-p-semantic-grammar-mode
semantic-tag-boundary-p-semantic-grammar-mode is a byte-compiled
function defined in grammar.el.gz.
Signature
(semantic-tag-boundary-p-semantic-grammar-mode TAG)
Documentation
Return non-nil for tags that should have a boundary drawn.
Only tags of type nonterminal will be so marked.
Override semantic-tag-boundary-p in semantic-grammar-mode
buffers.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/grammar.el.gz
(define-mode-local-override semantic-tag-boundary-p
semantic-grammar-mode (tag)
"Return non-nil for tags that should have a boundary drawn.
Only tags of type `nonterminal' will be so marked."
(let ((c (semantic-tag-class tag)))
(eq c 'nonterminal)))