Function: vhdl-template-quantity-free
vhdl-template-quantity-free is an interactive and byte-compiled
function defined in vhdl-mode.el.gz.
Signature
(vhdl-template-quantity-free)
Documentation
Insert a free quantity declaration.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-template-quantity-free ()
"Insert a free quantity declaration."
(interactive)
(vhdl-insert-keyword "QUANTITY ")
(vhdl-template-field "names")
(insert " : ")
(vhdl-template-field "type")
(let ((position (point)))
(insert " := ")
(unless (vhdl-template-field "[initialization]" nil t)
(delete-region position (point)))
(insert ";")
(vhdl-comment-insert-inline)))