Function: verilog-indent-buffer

verilog-indent-buffer is an interactive and byte-compiled function defined in verilog-mode.el.gz.

Signature

(verilog-indent-buffer)

Documentation

Indent-region the entire buffer as Verilog code.

To call this from the command line, see M-x verilog-batch-indent (verilog-batch-indent).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
;;; Interactive functions:
;;

(defun verilog-indent-buffer ()
  "Indent-region the entire buffer as Verilog code.
To call this from the command line, see \\[verilog-batch-indent]."
  (interactive)
  (verilog-mode)
  (verilog-auto-reeval-locals)
  (indent-region (point-min) (point-max) nil))