Function: byte-compile-file-form-eval
byte-compile-file-form-eval is a byte-compiled function defined in
bytecomp.el.gz.
Signature
(byte-compile-file-form-eval FORM)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-file-form-eval (form)
(if (and (eq (car-safe (nth 1 form)) 'quote)
(equal (nth 2 form) lexical-binding))
(nth 1 (nth 1 form))
(byte-compile-keep-pending form)))