Skip to content

Commit

Permalink
Merge pull request #138 from wyleyr/master
Browse files Browse the repository at this point in the history
org-caldav-change-timestamp: also match against time ranges
  • Loading branch information
dengste committed Apr 3, 2018
2 parents 6404157 + cb2b628 commit 8d3492c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion org-caldav.el
Expand Up @@ -1116,7 +1116,8 @@ is on s-expression."
(goto-char (point-min))
(if (search-forward "<%%(" nil t)
'orgsexp
(when (re-search-forward org-maybe-keyword-time-regexp nil t)
(when (or (re-search-forward org-tr-regexp nil t)
(re-search-forward org-maybe-keyword-time-regexp nil t))
(replace-match newtime nil t))
(widen)))

Expand Down

0 comments on commit 8d3492c

Please sign in to comment.