Function: verilog-batch-inject-auto

verilog-batch-inject-auto is a byte-compiled function defined in verilog-mode.el.gz.

Signature

(verilog-batch-inject-auto)

Documentation

For use with --batch, perform automatic injection as a stand-alone tool.

This sets up the appropriate Verilog mode environment, injects new automatics with M-x verilog-inject-auto (verilog-inject-auto) on all command-line files, and saves the buffers. For proper results, multiple filenames need to be passed on the command line in bottom-up order.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-batch-inject-auto ()
  "For use with --batch, perform automatic injection as a stand-alone tool.
This sets up the appropriate Verilog mode environment, injects new automatics
with \\[verilog-inject-auto] on all command-line files, and saves the buffers.
For proper results, multiple filenames need to be passed on the command
line in bottom-up order."
  (unless noninteractive
    (error "Use verilog-batch-inject-auto only with --batch"))  ; Otherwise we'd mess up buffer modes
  (verilog-batch-execute-func 'verilog-inject-auto))