Variable: c-ts-common-comment-start-line-regexp
c-ts-common-comment-start-line-regexp is a variable defined in
c-ts-common.el.gz.
Value
"//+\\s-*"
Documentation
The comment-start-line-regexp used by c-ts-common-comment-setup.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/c-ts-common.el.gz
(defvar c-ts-common-comment-start-line-regexp
(rx (seq "/" (+ "/"))
(* (syntax whitespace)))
"The `comment-start-line-regexp' used by `c-ts-common-comment-setup'.")