Function: verilog--suppressed-warnings
verilog--suppressed-warnings is a macro defined in verilog-mode.el.gz.
Signature
(verilog--suppressed-warnings WARNINGS &rest BODY)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defmacro verilog--suppressed-warnings (warnings &rest body)
(declare (indent 1) (debug t))
(cond
((fboundp 'with-suppressed-warnings)
`(with-suppressed-warnings ,warnings ,@body))
((fboundp 'with-no-warnings)
`(with-no-warnings ,@body))
(t
`(progn ,@body))))