Variable: org-complex-heading-regexp

org-complex-heading-regexp is a buffer-local variable defined in org.el.gz.

Documentation

Matches a headline and puts everything into groups:

group 1: Stars group 2: The TODO keyword, maybe group 3: Priority cookie group 4: True headline group 5: Tags

Since TODO keywords are case-sensitive, case-fold-search is expected to be bound to nil when matching against this regexp.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defvar-local org-complex-heading-regexp nil
  "Matches a headline and puts everything into groups:

group 1: Stars
group 2: The TODO keyword, maybe
group 3: Priority cookie
group 4: True headline
group 5: Tags

Since TODO keywords are case-sensitive, `case-fold-search' is
expected to be bound to nil when matching against this regexp.")