Function: semantic-ctxt-end-of-symbol
semantic-ctxt-end-of-symbol is a byte-compiled function defined in
ctxt.el.gz.
Signature
(semantic-ctxt-end-of-symbol &optional POINT)
Documentation
Move point to the end of the current symbol under POINT.
This skips forward over symbols in a complex reference.
For example, in the C statement:
this.that().entry;
If the cursor is on this, will move point to the ; after entry.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/ctxt.el.gz
(define-overloadable-function semantic-ctxt-end-of-symbol (&optional point)
"Move point to the end of the current symbol under POINT.
This skips forward over symbols in a complex reference.
For example, in the C statement:
this.that().entry;
If the cursor is on `this', will move point to the ; after entry.")