Function: vhdl-fix-statement-buffer

vhdl-fix-statement-buffer is an interactive and byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-fix-statement-buffer)

Documentation

Force statements in buffer on separate line except when on same line with end keyword (necessary for correct indentation).

Probably introduced at or before Emacs version 24.4.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-fix-statement-buffer ()
  "Force statements in buffer on separate line except when on same line
with `end' keyword (necessary for correct indentation)."
  (interactive)
  (vhdl-fix-statement-region (point-min) (point-max)))