Function: semantic-get-all-local-variables-default
semantic-get-all-local-variables-default is a byte-compiled function
defined in ctxt.el.gz.
Signature
(semantic-get-all-local-variables-default &optional POINT)
Documentation
Get all local variables for this context.
Optional argument POINT is the location to start getting the variables from. That is a cons (LOCAL-ARGUMENTS . LOCAL-VARIABLES) where:
- LOCAL-ARGUMENTS is collected by semantic-get-local-arguments.
- LOCAL-VARIABLES is collected by semantic-get-local-variables.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/ctxt.el.gz
(defun semantic-get-all-local-variables-default (&optional point)
"Get all local variables for this context.
Optional argument POINT is the location to start getting the variables from.
That is a cons (LOCAL-ARGUMENTS . LOCAL-VARIABLES) where:
- LOCAL-ARGUMENTS is collected by `semantic-get-local-arguments'.
- LOCAL-VARIABLES is collected by `semantic-get-local-variables'."
(save-excursion
(if point (goto-char point))
(let ((case-fold-search semantic-case-fold))
(append (semantic-get-local-arguments)
(semantic-get-local-variables)))))