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)
(verilog-re-search-forward verilog-end-defun-re nil 'move))