Function: verilog-warn

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

Signature

(verilog-warn STRING &rest ARGS)

Documentation

Print a warning with format using STRING and optional ARGS.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
;;; Batch:
;;

(defun verilog-warn (string &rest args)
  "Print a warning with `format' using STRING and optional ARGS."
  (apply #'message (concat "%%Warning: " string) args))