Function: vhdl-aget
vhdl-aget is a byte-compiled function defined in vhdl-mode.el.gz.
Signature
(vhdl-aget ALIST KEY)
Documentation
Return the value in ALIST that is associated with KEY.
If KEY is not found, then nil is returned.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-aget (alist key)
"Return the value in ALIST that is associated with KEY.
If KEY is not found, then nil is returned."
(cdr (assoc key alist)))