Function: verilog-in-comment-p

verilog-in-comment-p is a byte-compiled function defined in verilog-mode.el.gz.

Signature

(verilog-in-comment-p)

Documentation

Return non-nil if in a star or // comment.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-in-comment-p ()
  "Return non-nil if in a star or // comment."
  (let ((state (save-excursion (verilog-syntax-ppss))))
    (or (nth 4 state) (nth 7 state))))