Function: vhdl-get-components-package-name
vhdl-get-components-package-name is a byte-compiled function defined
in vhdl-mode.el.gz.
Signature
(vhdl-get-components-package-name)
Documentation
Return the name of the components package.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Structural composition
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun vhdl-get-components-package-name ()
"Return the name of the components package."
(let ((project (vhdl-project-p)))
(if project
(vhdl-replace-string (car vhdl-components-package-name)
(subst-char-in-string ? ?_ project))
(cdr vhdl-components-package-name))))