Function: vhdl-end-of-defun

vhdl-end-of-defun is an interactive and byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-end-of-defun &optional COUNT)

Documentation

Move forward to the end of a VHDL defun.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-end-of-defun (&optional _count)
  "Move forward to the end of a VHDL defun."
  (interactive)
  (let ((case-fold-search t))
    (vhdl-beginning-of-defun)
    (if (not (looking-at "block\\|process\\|procedural"))
	(re-search-forward "\\bis\\b"))
    (vhdl-forward-sexp)))