org-agenda.el (org-agenda-to-appt): Ignore DONE tasks

This commit is contained in:
Oleh Krehel 2016-02-26 16:58:44 +01:00
parent 7125fa1947
commit 1003b1025b
1 changed files with 1 additions and 1 deletions

View File

@ -10207,7 +10207,7 @@ to override `appt-message-warning-time'."
(wrn (get-text-property 1 'warntime x)))
;; FIXME: Shall we remove text-properties for the appt text?
;; (setq evt (set-text-properties 0 (length evt) nil evt))
(when (and ok tod)
(when (and ok tod (not (string-match "\\`DONE\\|CANCELLED" evt)))
(setq tod (concat "00" (number-to-string tod))
tod (when (string-match
"\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)