Variable: c-ts-mode--for-each-tail-regexp

c-ts-mode--for-each-tail-regexp is a variable defined in c-ts-mode.el.gz.

Value

"FOR_EACH_\\(?:ALIST_VALUE\\|FRAME\\|LIVE_BUFFER\\|TAIL\\(?:_SAFE\\)?\\)"

Documentation

A regexp matching all the variants of the FOR_EACH_* macro.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/c-ts-mode.el.gz
(defvar c-ts-mode--for-each-tail-regexp
  (rx "FOR_EACH_" (or "TAIL" "TAIL_SAFE" "ALIST_VALUE"
                      "LIVE_BUFFER" "FRAME"))
  "A regexp matching all the variants of the FOR_EACH_* macro.")