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