Function: verilog-auto-save-compile

verilog-auto-save-compile is an interactive and byte-compiled function defined in verilog-mode.el.gz.

Signature

(verilog-auto-save-compile)

Documentation

Update automatics with M-x verilog-auto (verilog-auto), save the buffer, and compile.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-auto-save-compile ()
  "Update automatics with \\[verilog-auto], save the buffer, and compile."
  (interactive)
  (verilog-auto)	; Always do it for safety
  (save-buffer)
  (compile compile-command))