Function: byte-compile-body
byte-compile-body is a byte-compiled function defined in
bytecomp.el.gz.
Signature
(byte-compile-body BODY &optional FOR-EFFECT)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
;;; control structures
(defun byte-compile-body (body &optional for-effect)
(while (cdr body)
(byte-compile-form (car body) t)
(setq body (cdr body)))
(byte-compile-form (car body) for-effect))