In previous version of Org-mode, I was used to "/ t" showing me only entries that matched the tag keyed by 't'. Now it hides them instead. I was able to fix this using:
modified lisp/org-agenda.el @@ -8578,7 +8578,7 @@ also press `-' or `+' to switch between filtering and excluding." (org-agenda-filter-show-all-tag) (setq tag (car a)) (setq org-agenda-tag-filter - (cons (concat (if exclude "-" "+") tag) + (cons (concat (if exclude "+" "-") tag) (if accumulate current nil))) (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)) (t (error "Invalid tag selection character %c" char))))) The documentation for '/' says that "Keep only those lines in the agenda buffer that have a specific tag.", so I'm pretty sure the current behavior is a bug? -- John Wiegley GPG fingerprint = 4710 CF98 AF9B 327B B80F http://newartisans.com 60E1 46C4 BD1A 7AC1 4BA2