Function: semantic-ctxt-current-symbol-emacs-lisp-mode
semantic-ctxt-current-symbol-emacs-lisp-mode is a byte-compiled
function defined in el.el.gz.
Signature
(semantic-ctxt-current-symbol-emacs-lisp-mode &optional POINT)
Documentation
List the symbol under point.
Override semantic-ctxt-current-symbol in emacs-lisp-mode buffers.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/bovine/el.el.gz
(define-mode-local-override semantic-ctxt-current-symbol emacs-lisp-mode
(&optional point)
"List the symbol under point."
(save-excursion
(if point (goto-char point))
(require 'thingatpt)
(let ((sym (thing-at-point 'symbol)))
(if sym (list sym)))
))