Variable: org-keyword-time-not-clock-regexp

org-keyword-time-not-clock-regexp is a variable defined in org.el.gz.

Value

"\\<\\(\\(?:CLOSED\\|DEADLINE\\|SCHEDULED\\):\\) *[[<]\\([^]>]+\\)[]>]"

Documentation

Matches any of the 3 keywords, together with the time stamp.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defconst org-keyword-time-not-clock-regexp
  (concat
   "\\<"
   (regexp-opt
    (list org-scheduled-string org-deadline-string org-closed-string) t)
   " *[[<]\\([^]>]+\\)[]>]")
  "Matches any of the 3 keywords, together with the time stamp.")