Variable: c-ts-common-comment-start-skip

c-ts-common-comment-start-skip is a variable defined in c-ts-common.el.gz.

Value

"\\(?://+\\|/\\*+\\)\\s-*"

Documentation

The comment-start-skip used by c-ts-common-comment-setup.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/c-ts-common.el.gz
;;; Comment indentation and filling

(defvar c-ts-common-comment-start-skip
  (rx (or (seq "/" (+ "/"))
          (seq "/" (+ "*")))
      (* (syntax whitespace)))
  "The `comment-start-skip' used by `c-ts-common-comment-setup'.")