org-agenda: Fix org-agenda-filter-by-tag-refine

* lisp/org-agenda.el (org-agenda-filter-by-tag-refine): Refine rather
  than exlude tags, reverting change from 6c6ae99.  Mark as obsolete
  because this functionality is now redundant with
  org-agenda-filter-by-tag.

Reported-by: Viktor Rosenfeld <v.rosenfeld@gmx.de>
<http://permalink.gmane.org/gmane.emacs.orgmode/104605>
This commit is contained in:
Kyle Meyer 2016-02-03 23:34:26 -05:00
parent 2fc29a1796
commit b347277ba0

View file

@ -7568,7 +7568,9 @@ to switch between filtering and excluding."
(defun org-agenda-filter-by-tag-refine (arg &optional char) (defun org-agenda-filter-by-tag-refine (arg &optional char)
"Refine the current filter. See `org-agenda-filter-by-tag'." "Refine the current filter. See `org-agenda-filter-by-tag'."
(interactive "P") (interactive "P")
(org-agenda-filter-by-tag arg char 'refine)) (org-agenda-filter-by-tag arg char))
(make-obsolete 'org-agenda-filter-by-tag-refine
"use `org-agenda-filter-by-tag' instead." "8.3.4")
(defun org-agenda-filter-make-matcher (filter type &optional expand) (defun org-agenda-filter-make-matcher (filter type &optional expand)
"Create the form that tests a line for agenda filter. Optional "Create the form that tests a line for agenda filter. Optional