Function: verilog-batch-delete-trailing-whitespace
verilog-batch-delete-trailing-whitespace is a byte-compiled function
defined in verilog-mode.el.gz.
Signature
(verilog-batch-delete-trailing-whitespace)
Documentation
For use with --batch, perform whitespace deletion as a stand-alone tool.
This sets up the appropriate Verilog mode environment, removes
whitespace with M-x verilog-delete-trailing-whitespace (verilog-delete-trailing-whitespace) on all
command-line files, and saves the buffers.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-batch-delete-trailing-whitespace ()
"For use with --batch, perform whitespace deletion as a stand-alone tool.
This sets up the appropriate Verilog mode environment, removes
whitespace with \\[verilog-delete-trailing-whitespace] on all
command-line files, and saves the buffers."
(unless noninteractive
(error "Use verilog-batch-delete-trailing-whitespace only with --batch")) ; Otherwise we'd mess up buffer modes
(verilog-batch-execute-func 'verilog-delete-trailing-whitespace))