Function: c-ts-common-looking-at-star
c-ts-common-looking-at-star is a byte-compiled function defined in
c-ts-common.el.gz.
Signature
(c-ts-common-looking-at-star N P BOL &rest _)
Documentation
A tree-sitter simple indent matcher.
Matches if there is a "*" after BOL.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/c-ts-common.el.gz
;;; Comment indentation and filling
(defun c-ts-common-looking-at-star (_n _p bol &rest _)
"A tree-sitter simple indent matcher.
Matches if there is a \"*\" after BOL."
(eq (char-after bol) ?*))