Function: vhdl-align-inline-comment-buffer
vhdl-align-inline-comment-buffer is an interactive and byte-compiled
function defined in vhdl-mode.el.gz.
Signature
(vhdl-align-inline-comment-buffer)
Documentation
Align inline comments within buffer.
Groups of code lines separated by empty lines are aligned
individually, if vhdl-align-groups is non-nil.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-align-inline-comment-buffer ()
"Align inline comments within buffer.
Groups of code lines separated by empty lines are aligned
individually, if `vhdl-align-groups' is non-nil."
(interactive)
(vhdl-align-inline-comment-region (point-min) (point-max)))