Function: vhdl-template-attribute
vhdl-template-attribute is an interactive and byte-compiled function
defined in vhdl-mode.el.gz.
Signature
(vhdl-template-attribute)
Documentation
Insert an attribute declaration or specification.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-template-attribute ()
"Insert an attribute declaration or specification."
(interactive)
(if (eq (vhdl-decision-query
"attribute" "(d)eclaration or (s)pecification?" t) ?s)
(vhdl-template-attribute-spec)
(vhdl-template-attribute-decl)))