Function: vhdl-template-wait
vhdl-template-wait is an interactive and byte-compiled function
defined in vhdl-mode.el.gz.
Signature
(vhdl-template-wait)
Documentation
Insert a wait statement.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-template-wait ()
"Insert a wait statement."
(interactive)
(vhdl-insert-keyword "WAIT ")
(unless (vhdl-template-field
"[ON sensitivity list] [UNTIL condition] [FOR time expression]"
nil t)
(delete-char -1))
(insert ";"))