Variable: ert-font-lock--face-symbol-re
ert-font-lock--face-symbol-re is a variable defined in
ert-font-lock.el.gz.
Value
"[./_[:alnum:]-]+"
Documentation
A face symbol matching regex.
The regexp cannot use character classes as these can be redefined by the major mode of the host language.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert-font-lock.el.gz
(defconst ert-font-lock--face-symbol-re
(rx (+ (or alphanumeric "-" "_" "." "/")))
"A face symbol matching regex.
The regexp cannot use character classes as these can be redefined by the
major mode of the host language.")