Function: byte-compile-file-form-with-suppressed-warnings
byte-compile-file-form-with-suppressed-warnings is a byte-compiled
function defined in bytecomp.el.gz.
Signature
(byte-compile-file-form-with-suppressed-warnings FORM)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-file-form-with-suppressed-warnings (form)
;; cf byte-compile-file-form-progn.
(let ((byte-compile--suppressed-warnings
(append (cadadr form) byte-compile--suppressed-warnings)))
(mapc 'byte-compile-file-form (cddr form))
nil))