summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2017-08-17 14:51:11 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2017-08-17 14:51:11 +0200
commitdb0ef4d06e7025b5e9241df794313a7221f82035 (patch)
tree8c003d1615ab812e3ebbe6e03c0c6832b72e045f
parent489080124210a78d6622c79ede5c003e07c2ccb8 (diff)
downloadorg-mode-db0ef4d06e7025b5e9241df794313a7221f82035.tar.gz
Revert "org-agenda: `tags-todo' command type includes DONE keywords"
This reverts commit 942b6267a09e167ad3a546e83205601aa5c0704e.
-rw-r--r--etc/ORG-NEWS3
-rw-r--r--lisp/org-agenda.el4
2 files changed, 2 insertions, 5 deletions
diff --git a/etc/ORG-NEWS b/etc/ORG-NEWS
index 9631411..96c8f52 100644
--- a/etc/ORG-NEWS
+++ b/etc/ORG-NEWS
@@ -439,9 +439,6 @@ document with ~org-mark-ring-goto~ (default binding =C-c &=).
See docstring for details.
-*** ~tags-todo~ custom searches now include DONE keywords
-~tags-todo~ is now equivalent to ~C-c a m~ instead of ~C-c a M~ unless
-you use "/!" markup when filtering TODO keywords.
*** New option ~org-babel-uppercase-example-markers~
This variable is a ~defcustom~ and replaces the variable
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index a661a78..6bd1235 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -2840,7 +2840,7 @@ Pressing `<' twice means to restrict to the current subtree or region
((eq type 'tags)
(org-let lprops '(org-tags-view current-prefix-arg org-match)))
((eq type 'tags-todo)
- (org-let lprops '(org-tags-view current-prefix-arg org-match)))
+ (org-let lprops '(org-tags-view '(4) org-match)))
((eq type 'todo)
(org-let lprops '(org-todo-list org-match)))
((eq type 'tags-tree)
@@ -3167,7 +3167,7 @@ s Search for keywords M Like m, but only TODO entries
'(org-tags-view current-prefix-arg match)))
((eq type 'tags-todo)
(org-let2 gprops lprops
- '(org-tags-view current-prefix-arg match)))
+ '(org-tags-view '(4) match)))
((eq type 'todo)
(org-let2 gprops lprops
'(org-todo-list match)))