Function: byte-compile-top-level-body
byte-compile-top-level-body is a byte-compiled function defined in
bytecomp.el.gz.
Signature
(byte-compile-top-level-body BODY &optional FOR-EFFECT)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
;; Given BODY, compile it and return a new body.
(defun byte-compile-top-level-body (body &optional for-effect)
(setq body
(byte-compile-top-level (cons 'progn body) for-effect t))
(cond ((eq (car-safe body) 'progn)
(cdr body))
(body
(list body))))