Function: verilog-in-star-comment-p
verilog-in-star-comment-p is a byte-compiled function defined in
verilog-mode.el.gz.
Signature
(verilog-in-star-comment-p)
Documentation
Return non-nil if in a star comment.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-in-star-comment-p ()
"Return non-nil if in a star comment."
(let ((state (save-excursion (verilog-syntax-ppss))))
(and
(nth 4 state) ; t if in a comment of style a // or b /**/
(not
(nth 7 state) ; t if in a comment of style b /**/
))))