Function: semantic-ctxt-current-thing
semantic-ctxt-current-thing is a byte-compiled function defined in
ctxt.el.gz.
Signature
(semantic-ctxt-current-thing)
Documentation
Calculate a thing identified by the current cursor position.
Calls previously defined semantic-ctxt-current-... calls until something
gets a match. See semantic-ctxt-current-symbol,
semantic-ctxt-current-function, and semantic-ctxt-current-assignment
for details on the return value.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/ctxt.el.gz
(defun semantic-ctxt-current-thing ()
"Calculate a thing identified by the current cursor position.
Calls previously defined `semantic-ctxt-current-...' calls until something
gets a match. See `semantic-ctxt-current-symbol',
`semantic-ctxt-current-function', and `semantic-ctxt-current-assignment'
for details on the return value."
(or (semantic-ctxt-current-symbol)
(semantic-ctxt-current-function)
(semantic-ctxt-current-assignment)))