Function: vhdl-indent-sexp
vhdl-indent-sexp is an interactive and byte-compiled function defined
in vhdl-mode.el.gz.
Signature
(vhdl-indent-sexp &optional ENDPOS)
Documentation
Indent each line of the list starting just after point.
If optional arg ENDPOS is given, indent each line, stopping when ENDPOS is encountered.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-indent-sexp (&optional endpos)
"Indent each line of the list starting just after point.
If optional arg ENDPOS is given, indent each line, stopping when
ENDPOS is encountered."
(interactive)
(save-excursion
(let ((beg (point))
(end (progn (vhdl-forward-sexp nil endpos) (point))))
(indent-region beg end nil))))