Function: vhdl-work-library
vhdl-work-library is a byte-compiled function defined in
vhdl-mode.el.gz.
Signature
(vhdl-work-library)
Documentation
Return the working library name of the current project or "work" if no project is defined.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-work-library ()
"Return the working library name of the current project or \"work\" if no
project is defined."
(vhdl-resolve-env-variable
(or (nth 6 (vhdl-aget vhdl-project-alist vhdl-project))
vhdl-default-library)))