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