Function: semantic-ctxt-current-symbol-srecode-template-mode

semantic-ctxt-current-symbol-srecode-template-mode is a byte-compiled function defined in srt-mode.el.gz.

Signature

(semantic-ctxt-current-symbol-srecode-template-mode &optional POINT)

Documentation

Return the current symbol under POINT.

Return nil if point is not on/in a template macro. Override semantic-ctxt-current-symbol in srecode-template-mode buffers.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/srt-mode.el.gz
(define-mode-local-override semantic-ctxt-current-symbol
  srecode-template-mode (&optional point)
  "Return the current symbol under POINT.
Return nil if point is not on/in a template macro."
  (let ((macro (srecode-parse-this-macro point)))
    (cdr macro))
  )