Function: semantic-get-local-variables

semantic-get-local-variables is a byte-compiled function defined in ctxt.el.gz.

Signature

(semantic-get-local-variables &optional POINT)

Documentation

Get the local variables based on POINT's context.

Local variables are returned in Semantic tag format. This can be overridden with get-local-variables.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/ctxt.el.gz
(define-overloadable-function semantic-get-local-variables (&optional point)
  "Get the local variables based on POINT's context.
Local variables are returned in Semantic tag format.
This can be overridden with `get-local-variables'."
  ;; Disable parsing messages
  (let ((semantic--progress-reporter nil))
    (save-excursion
      (if point (goto-char point))
      (let* ((case-fold-search semantic-case-fold))
	(:override-with-args ())))))