summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2017-09-08 22:35:54 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2017-09-08 22:35:54 +0200
commite0259f93747d1f08f65889fbcdd0e3dab7817ac9 (patch)
tree1f50c2030a20d1c220a75b1f8d8b0f84dcd9fd09
parentd059b7895ba71744de0a7502a5a9fe78c36c93fe (diff)
downloadorg-mode-e0259f93747d1f08f65889fbcdd0e3dab7817ac9.tar.gz
org-agenda: Fix typo
* lisp/org-agenda.el (org-search-view): Add missing :test keyword.
-rw-r--r--lisp/org-agenda.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 31633d7..180bb74 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)