Variable: vhdl-highlight-forbidden-words

vhdl-highlight-forbidden-words is a customizable variable defined in vhdl-mode.el.gz.

Value

nil

Documentation

Non-nil means highlight forbidden words.

The reserved words specified in option vhdl-forbidden-words or having the syntax specified in option vhdl-forbidden-syntax are highlighted in a warning color (face vhdl-font-lock-reserved-words-face) to indicate not to use them.

NOTE: Activate the new setting in a VHDL buffer by re-fontifying it (menu
      entry "Fontify Buffer").

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-highlight-forbidden-words nil
  "Non-nil means highlight forbidden words.
The reserved words specified in option `vhdl-forbidden-words' or having the
syntax specified in option `vhdl-forbidden-syntax' are highlighted in a
warning color (face `vhdl-font-lock-reserved-words-face') to indicate not to
use them.

NOTE: Activate the new setting in a VHDL buffer by re-fontifying it (menu
      entry \"Fontify Buffer\")."
  :type 'boolean
  :set (lambda (variable value)
	 (vhdl-custom-set variable value
			  #'vhdl-words-init #'vhdl-font-lock-init))
  :group 'vhdl-highlight)