Function: byte-compile-not-lexical-var-p

byte-compile-not-lexical-var-p is a byte-compiled function defined in bytecomp.el.gz.

Signature

(byte-compile-not-lexical-var-p VAR)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-not-lexical-var-p (var)
  (or (not (symbolp var))
      (special-variable-p var)
      (memq var byte-compile-bound-variables)
      (memq var '(nil t))
      (keywordp var)))