Function: vhdl-fixup-whitespace-buffer

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

Signature

(vhdl-fixup-whitespace-buffer)

Documentation

Fixup whitespace in buffer.

Surround operator symbols by one space, eliminate multiple spaces (except at beginning of line), eliminate spaces at end of line, do nothing in comments.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-fixup-whitespace-buffer ()
  "Fixup whitespace in buffer.
Surround operator symbols by one space, eliminate multiple
spaces (except at beginning of line), eliminate spaces at end of
line, do nothing in comments."
  (interactive)
  (vhdl-fixup-whitespace-region (point-min) (point-max)))