Variable: org-maybe-keyword-time-regexp

org-maybe-keyword-time-regexp is a variable defined in org-compat.el.gz.

This variable is obsolete since 9.4; use org-planning-line-re, followed by org-ts-regexp-both instead.

Value

"\\(\\<\\(\\(?:CLO\\(?:CK\\|SED\\)\\|DEADLINE\\|SCHEDULED\\):\\)\\)? *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^]
\n>]*[]>]\\|<%%([^
\n>]*>\\)"

Documentation

Matches a timestamp, possibly preceded by a keyword.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-compat.el.gz
(defconst org-maybe-keyword-time-regexp
  (concat "\\(\\<\\(\\(?:CLO\\(?:CK\\|SED\\)\\|DEADLINE\\|SCHEDULED\\):\\)\\)?"
	  " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^]\r\n>]*[]>]"
	  "\\|"
	  "<%%([^\r\n>]*>\\)")
  "Matches a timestamp, possibly preceded by a keyword.")