Function: vhdl-warning

vhdl-warning is a byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-warning STRING &optional NOBEEP)

Documentation

Print out warning STRING and beep.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-warning (string &optional nobeep)
  "Print out warning STRING and beep."
  (message "WARNING:  %s" string)
  (unless (or nobeep noninteractive) (beep)))