Function: vhdl-update-sensitivity-list-buffer

vhdl-update-sensitivity-list-buffer is an interactive and byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-update-sensitivity-list-buffer)

Documentation

Update sensitivity list of all processes in current buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-update-sensitivity-list-buffer ()
  "Update sensitivity list of all processes in current buffer."
  (interactive)
  (save-excursion
    (vhdl-prepare-search-2
     (goto-char (point-min))
     (message "Updating sensitivity lists...")
     (while (re-search-forward "^\\s-*\\(\\w+[ \t\n\r\f]*:[ \t\n\r\f]*\\)?process\\>" nil t)
       (goto-char (match-beginning 0))
       (condition-case nil (vhdl-update-sensitivity-list) (error "")))
     (message "Updating sensitivity lists...done")))
  (when noninteractive (save-buffer)))