Function: vhdl-forward-skip-label

vhdl-forward-skip-label is a byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-forward-skip-label &optional LIM)

Documentation

Skip forward over a label, with optional maximal limit.

If label is not found, nil is returned and point is not moved.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-forward-skip-label (&optional lim)
  "Skip forward over a label, with optional maximal limit.
If label is not found, nil is returned and point is not moved."
  (let ((lim (or lim (point-max))))
    (if (looking-at vhdl-label-key)
	(progn
	  (goto-char (match-end 0))
	  (vhdl-forward-syntactic-ws lim)))
    ))