1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-12-27 10:55:04 +00:00

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.
This commit is contained in:
Matt Lundin 2010-07-15 04:40:59 +00:00 committed by Carsten Dominik
parent 37ed35566b
commit c45d0680af

View File

@ -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)