Function: verilog-run-hooks
verilog-run-hooks is a macro defined in verilog-mode.el.gz.
Signature
(verilog-run-hooks &rest HOOKS)
Documentation
Run each hook in HOOKS using run-hooks.
Set verilog-in-hooks during this time, to assist AUTO caches.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defmacro verilog-run-hooks (&rest hooks)
"Run each hook in HOOKS using `run-hooks'.
Set `verilog-in-hooks' during this time, to assist AUTO caches."
`(let ((verilog-in-hooks t))
(run-hooks ,@hooks)))