org-agenda: Better state change detection
* lisp/org-agenda.el (org-agenda-get-progress): Use appropriate regexp as TODO keywords are not limited to alphanumeric characters. Reported-by: email@edgar-kalkowski.de <http://lists.gnu.org/archive/html/emacs-orgmode/2017-09/msg00206.html>
This commit is contained in:
parent
7ce9a24115
commit
d059b7895b
|
@ -5728,7 +5728,8 @@ then those holidays will be skipped."
|
|||
(list
|
||||
(if (memq 'closed items) (concat "\\<" org-closed-string))
|
||||
(if (memq 'clock items) (concat "\\<" org-clock-string))
|
||||
(if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
|
||||
(if (memq 'state items)
|
||||
(format "- State \"%s\".*?" org-todo-regexp)))))
|
||||
(parts-re (if parts (mapconcat 'identity parts "\\|")
|
||||
(error "`org-agenda-log-mode-items' is empty")))
|
||||
(regexp (concat
|
||||
|
|
Loading…
Reference in New Issue