From e0259f93747d1f08f65889fbcdd0e3dab7817ac9 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 8 Sep 2017 22:35:54 +0200 Subject: [PATCH] org-agenda: Fix typo * lisp/org-agenda.el (org-search-view): Add missing :test keyword. --- lisp/org-agenda.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 31633d7a7..180bb7417 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -4490,10 +4490,10 @@ is active." ;; non-existent ones. (setq files (cl-remove-duplicates (append files org-agenda-text-search-extra-files) - (lambda (a b) - (and (file-exists-p a) - (file-exists-p b) - (file-equal-p a b)))) + :test (lambda (a b) + (and (file-exists-p a) + (file-exists-p b) + (file-equal-p a b)))) rtnall nil) (while (setq file (pop files)) (setq ee nil)