lisp/org-agenda.el:

* lisp/org-agenda.el (org-agenda-get-scheduled): Don't throw an
error when the search for the regular expression fails.

This completes 82197761.
This commit is contained in:
Bastien 2021-11-24 09:02:28 +01:00
parent d8293676c3
commit 77a9932b03
1 changed files with 1 additions and 1 deletions

View File

@ -6408,7 +6408,7 @@ scheduled items with an hour specification like [h]h:mm."
1 -1))
(pos (save-excursion
(goto-char (org-element-property :contents-begin el))
(re-search-forward regexp)
(re-search-forward regexp nil t)
(1- (match-beginning 1))))
(todo-state (org-element-property :todo-keyword el))
(donep (eq 'done (org-element-property :todo-type el)))