Function: verilog-end-of-defun
verilog-end-of-defun is an interactive and byte-compiled function
defined in verilog-mode.el.gz.
Signature
(verilog-end-of-defun)
Documentation
Move forward to the end of the current function or procedure.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-end-of-defun ()
"Move forward to the end of the current function or procedure."
(interactive)
(when (or (looking-at verilog-defun-tf-re-beg)
(verilog-beg-of-defun))
(verilog-forward-sexp)
(point)))