Function: verilog-auto-reeval-locals
verilog-auto-reeval-locals is a byte-compiled function defined in
verilog-mode.el.gz.
Signature
(verilog-auto-reeval-locals &optional FORCE)
Documentation
Read file local variable segment at bottom of file if it has changed.
If FORCE, always reread it.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-auto-reeval-locals (&optional force)
"Read file local variable segment at bottom of file if it has changed.
If FORCE, always reread it."
(let ((curlocal (verilog-auto-read-locals)))
(when (or force (not (equal verilog-auto-last-file-locals curlocal)))
(set (make-local-variable 'verilog-auto-last-file-locals) curlocal)
;; Note this may cause this function to be recursively invoked,
;; because hack-local-variables may call (verilog-mode)
;; The above when statement will prevent it from recursing forever.
(hack-local-variables)
t)))