Function: byte-compile-sexp

byte-compile-sexp is a byte-compiled function defined in bytecomp.el.gz.

Signature

(byte-compile-sexp SEXP)

Documentation

Compile and return SEXP.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-sexp (sexp)
  "Compile and return SEXP."
  (displaying-byte-compile-warnings
   (byte-compile-close-variables
    (byte-compile-top-level (byte-compile-preprocess sexp)))))