Function: semantic-idle-completions-end-of-symbol-p
semantic-idle-completions-end-of-symbol-p is a byte-compiled function
defined in idle.el.gz.
Signature
(semantic-idle-completions-end-of-symbol-p)
Documentation
Return non-nil if the cursor is at the END of a symbol.
If the cursor is in the middle of a symbol, then we shouldn't be doing fancy completions.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/idle.el.gz
;;; Completion Popup Mode
;;
;; This mode uses tooltips to display a (hopefully) short list of possible
;; completions available for the text under point. It provides
;; NO provision for actually filling in the values from those completions.
(defun semantic-idle-completions-end-of-symbol-p ()
"Return non-nil if the cursor is at the END of a symbol.
If the cursor is in the middle of a symbol, then we shouldn't be
doing fancy completions."
(not (looking-at "\\w\\|\\s_")))