Function: verilog-modi-cache-add
verilog-modi-cache-add is a byte-compiled function defined in
verilog-mode.el.gz.
Signature
(verilog-modi-cache-add MODI FUNCTION ELEMENT SIG-LIST)
Documentation
Add function return results to the module cache.
Update MODI's cache for given FUNCTION so that the return ELEMENT of that function now contains the additional SIG-LIST parameters.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-modi-cache-add (modi function element sig-list)
"Add function return results to the module cache.
Update MODI's cache for given FUNCTION so that the return ELEMENT of that
function now contains the additional SIG-LIST parameters."
(let (fass)
(save-excursion
(verilog-modi-goto modi)
(if (setq fass (assoc (list modi function)
verilog-modi-cache-list))
(let ((func-returns (nth 3 fass)))
(aset func-returns element
(append sig-list (aref func-returns element))))))))