Function: byte-compile-file-form-with-no-warnings

byte-compile-file-form-with-no-warnings is a byte-compiled function defined in bytecomp.el.gz.

Signature

(byte-compile-file-form-with-no-warnings FORM)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-file-form-with-no-warnings (form)
  ;; cf byte-compile-file-form-progn.
  (let (byte-compile-warnings)
    (mapc 'byte-compile-file-form (cdr form))
    nil))