Function: verilog-beg-of-defun

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

Signature

(verilog-beg-of-defun)

Documentation

Move backward to the beginning of the current function or procedure.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-beg-of-defun ()
  "Move backward to the beginning of the current function or procedure."
  (interactive)
  (verilog-re-search-backward verilog-defun-re nil 'move))