Function: elisp-scope--special-variable-p
elisp-scope--special-variable-p is a byte-compiled function defined in
elisp-scope.el.gz.
Signature
(elisp-scope--special-variable-p SYM)
Documentation
Check whether SYM is a special variable in the current analysis context.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/elisp-scope.el.gz
(defun elisp-scope--special-variable-p (sym)
"Check whether SYM is a special variable in the current analysis context."
(or (memq sym elisp-scope-special-variables) (special-variable-p sym)))