From 115bd786954a20cffa3f10d1e0a68d5795fd7685 Mon Sep 17 00:00:00 2001 From: Tokuya Kameshima Date: Mon, 14 Jan 2013 18:04:31 +0100 Subject: [PATCH] org-agenda.el (org-search-view): Fix checking `org-agenda-show-inherited-tags' * org-agenda.el (org-search-view): Fix checking `org-agenda-show-inherited-tags'. TINYCHANGE --- lisp/org-agenda.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index ca8459ca3..ab0c2b1d1 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -4479,7 +4479,8 @@ in `org-agenda-text-search-extra-files'." category-pos (get-text-property (point) 'org-category-position) inherited-tags (or (eq org-agenda-show-inherited-tags 'always) - (memq 'todo org-agenda-show-inherited-tags) + (and (listp org-agenda-show-inherited-tags) + (memq 'todo org-agenda-show-inherited-tags)) (and (eq org-agenda-show-inherited-tags t) (or (eq org-agenda-use-tag-inheritance t) (memq 'todo org-agenda-use-tag-inheritance)))) -- 2.11.4.GIT