Function: semantic-ctxt-current-class-list-texinfo-mode
semantic-ctxt-current-class-list-texinfo-mode is a byte-compiled
function defined in texi.el.gz.
Signature
(semantic-ctxt-current-class-list-texinfo-mode &optional POINT)
Documentation
Determine the class of tags that can be used at POINT.
For texinfo, there two possibilities returned.
1) function - for a call to a texinfo function
2) word - indicates an English word.
It would be nice to know function arguments too, but not today.
Override semantic-ctxt-current-class-list in texinfo-mode
buffers.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/texi.el.gz
(define-mode-local-override semantic-ctxt-current-class-list
texinfo-mode (&optional _point)
"Determine the class of tags that can be used at POINT.
For texinfo, there two possibilities returned.
1) `function' - for a call to a texinfo function
2) `word' - indicates an English word.
It would be nice to know function arguments too, but not today."
(let ((sym (semantic-ctxt-current-symbol)))
(if (and sym (= (aref (car sym) 0) ?@))
'(function)
'(word))))