Function: semantic-displayer-focus-tag
semantic-displayer-focus-tag is a byte-compiled function defined in
complete.el.gz.
Signature
(semantic-displayer-focus-tag ARG &rest ARGS)
Aliases
semantic-displayor-focus-tag (obsolete since 27.1)
Implementations
((obj semantic-displayer-focus-abstract)) in `semantic/complete.el'.
Return the next tag OBJ should focus on.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
(cl-defmethod semantic-displayer-focus-tag ((obj semantic-displayer-focus-abstract))
"Return the next tag OBJ should focus on."
(when (and (slot-boundp obj 'table) (oref obj table))
(with-slots (table) obj
(semanticdb-find-result-nth table (oref obj focus)))))