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