Function: vhdl-case-word

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

Signature

(vhdl-case-word NUM)

Documentation

Adjust case of following NUM words.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-case-word (num)
  "Adjust case of following NUM words."
  (if vhdl-upper-case-keywords (upcase-word num) (downcase-word num)))