Function: vhdl-template-loop
vhdl-template-loop is an interactive and byte-compiled function
defined in vhdl-mode.el.gz.
Signature
(vhdl-template-loop)
Documentation
Insert a loop.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-template-loop ()
"Insert a loop."
(interactive)
(let ((char (vhdl-decision-query nil "(w)hile, (f)or, or (b)are?" t)))
(cond ((eq char ?w)
(vhdl-template-while-loop))
((eq char ?f)
(vhdl-template-for-loop))
(t (vhdl-template-bare-loop)))))