Function: verilog-warn-error

verilog-warn-error is a byte-compiled function defined in verilog-mode.el.gz.

Signature

(verilog-warn-error STRING &rest ARGS)

Documentation

Call error using STRING and optional ARGS.

If verilog-warn-fatal is non-nil, call verilog-warn instead.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-warn-error (string &rest args)
  "Call `error' using STRING and optional ARGS.
If `verilog-warn-fatal' is non-nil, call `verilog-warn' instead."
  (apply (if verilog-warn-fatal #'error #'verilog-warn)
         string args))