Function: vhdl-update-hierarchy
vhdl-update-hierarchy is a byte-compiled function defined in
vhdl-mode.el.gz.
Signature
(vhdl-update-hierarchy)
Documentation
Update directory and hierarchy information in speedbar.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-update-hierarchy ()
"Update directory and hierarchy information in speedbar."
(let ((file-list (reverse vhdl-modified-file-list))
updated)
(when (and vhdl-speedbar-update-on-saving file-list)
(while file-list
(setq updated
(or (vhdl-update-file-contents (car file-list))
updated))
(setq file-list (cdr file-list)))
(setq vhdl-modified-file-list nil)
(vhdl-speedbar-update-current-unit)
(when updated (message "Updating hierarchy...done")))))