Function: vhdl-indent-group

vhdl-indent-group is an interactive and byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-indent-group)

Documentation

Indent group of lines between empty lines.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-indent-group ()
  "Indent group of lines between empty lines."
  (interactive)
  (let ((beg (save-excursion
	       (if (re-search-backward vhdl-align-group-separate nil t)
		   (point-marker)
		 (point-min-marker))))
	(end (save-excursion
	       (if (re-search-forward vhdl-align-group-separate nil t)
		   (point-marker)
		 (point-max-marker)))))
    (indent-region beg end)))