summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-10-03 11:14:06 +0200
committerBastien Guerry <bzg@altern.org>2012-10-03 11:14:06 +0200
commit562aec40dd8cda01e329147ffcc527a1c16486bc (patch)
treed835c5a95b9e65a1e5aaa8634dfcf524cf59cabc
parentfc8ad1347e103b399d0fcdb617d99e5bf06b80b6 (diff)
downloadorg-mode-562aec40dd8cda01e329147ffcc527a1c16486bc.tar.gz
Fix commit 1dd4228.
-rw-r--r--lisp/org-agenda.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 04ad07a..39b22cf 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -5355,7 +5355,7 @@ Do we have a reason to ignore this TODO entry because it has a time stamp?
(setq b0 (match-beginning 0)
b3 (match-beginning 3) e3 (match-end 3)
todo-state (save-match-data (ignore-errors (org-get-todo-state)))
- habitp (and (functionp 'org-is-habit-p) (org-is-habit-p))
+ habitp (and (functionp 'org-is-habit-p) (save-match-data (org-is-habit-p)))
show-all (or (eq org-agenda-repeating-timestamp-show-all t)
(member todo-state
org-agenda-repeating-timestamp-show-all)))