Function: vhdl-template-subprogram-decl
vhdl-template-subprogram-decl is an interactive and byte-compiled
function defined in vhdl-mode.el.gz.
Signature
(vhdl-template-subprogram-decl)
Documentation
Insert a subprogram declaration.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-template-subprogram-decl ()
"Insert a subprogram declaration."
(interactive)
(if (eq (vhdl-decision-query nil "(p)rocedure or (f)unction?" t) ?f)
(vhdl-template-function-decl)
(vhdl-template-procedure-decl)))