Function: vhdl-port-paste-component
vhdl-port-paste-component is an interactive and byte-compiled function
defined in vhdl-mode.el.gz.
Signature
(vhdl-port-paste-component &optional NO-INDENT)
Documentation
Paste as a component declaration.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-port-paste-component (&optional no-indent)
"Paste as a component declaration."
(interactive)
(if (not vhdl-port-list)
(error "ERROR: No port read")
(message "Pasting port as component \"%s\"..." (car vhdl-port-list))
(vhdl-port-paste-declaration 'component no-indent)
(message "Pasting port as component \"%s\"...done" (car vhdl-port-list))))