From c45d0680af7d8a1a37507b3802f275d177c04c11 Mon Sep 17 00:00:00 2001 From: Matt Lundin Date: Thu, 15 Jul 2010 04:40:59 +0000 Subject: [PATCH] Fix inclusion of agenda-archives in search view * org-agenda.el (org-search-view): Fixed inclusion of agenda-archives in org-agenda-text-search-extra-files. org-search-view lacked a local binding for org-agenda-text-search-extra-files. Thus when pop was called on the variable, the agenda-archives symbol was removed and subsequent searches failed to include the archives. --- lisp/org-agenda.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 191ee5267..f65ceb8cc 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -3444,6 +3444,7 @@ in `org-agenda-text-search-extra-files'." 'mouse-face 'highlight 'help-echo (format "mouse-2 or RET jump to location"))) (full-words org-agenda-search-view-force-full-words) + (org-agenda-text-search-extra-files org-agenda-text-search-extra-files) regexp rtn rtnall files file pos marker category tags c neg re boolean ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str) -- 2.11.4.GIT