Function: verilog-pos-at-forward-syntactic-ws
verilog-pos-at-forward-syntactic-ws is a byte-compiled function
defined in verilog-mode.el.gz.
Signature
(verilog-pos-at-forward-syntactic-ws)
Documentation
Return point position at next non whitespace/comment token.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-pos-at-forward-syntactic-ws ()
"Return point position at next non whitespace/comment token."
(save-excursion
(verilog-forward-syntactic-ws)
(point)))