Function: byte-compile-file-form-progn

byte-compile-file-form-progn is a byte-compiled function defined in bytecomp.el.gz.

Signature

(byte-compile-file-form-progn FORM)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-file-form-progn (form)
  (mapc #'byte-compile-file-form (cdr form))
  ;; Return nil so the forms are not output twice.
  nil)