Function: verilog-in-slash-comment-p

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

Signature

(verilog-in-slash-comment-p)

Documentation

Return true if in a slash comment.

Source Code

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