Function: vhdl-template-subprogram-body

vhdl-template-subprogram-body is an interactive and byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-template-subprogram-body)

Documentation

Insert a subprogram body.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-template-subprogram-body ()
  "Insert a subprogram body."
  (interactive)
  (if (eq (vhdl-decision-query nil "(p)rocedure or (f)unction?" t) ?f)
      (vhdl-template-function-body)
    (vhdl-template-procedure-body)))