Function: hack-one-local-variable-constantp
hack-one-local-variable-constantp is a byte-compiled function defined
in files.el.gz.
Signature
(hack-one-local-variable-constantp EXP)
Source Code
;; Defined in /usr/src/emacs/lisp/files.el.gz
(defun hack-one-local-variable-constantp (exp)
(or (and (not (symbolp exp)) (not (consp exp)))
(memq exp '(t nil))
(keywordp exp)
(hack-one-local-variable-quotep exp)))