Function: byte-compile-no-warnings

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

Signature

(byte-compile-no-warnings FORM)

Source Code

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