aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs/notmuch-query.el
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-10-27 17:54:38 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-10-27 17:54:38 -0700
commit4ddb5ab4dd42208ba24989f188bdd06ab7865b5e (patch)
treedf9893bbe6b4aa5e2dd0956995a3eb7b856787e2 /emacs/notmuch-query.el
parentc506e1034b5adb54b3e4f8d3e59086756f2bb126 (diff)
emacs: Fix to eliminate warning in notmuch-query-map-aux
This is one of those cases where the warning looks absolutely correct, (complaining about a free variable), but I'm left wondering how the original code could have worked at all. From what I can tell, this code wasn't actually being called by any of the current code in notmuch.
Diffstat (limited to 'emacs/notmuch-query.el')
-rw-r--r--emacs/notmuch-query.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/notmuch-query.el b/emacs/notmuch-query.el
index 0d6e7759..26f95447 100644
--- a/emacs/notmuch-query.el
+++ b/emacs/notmuch-query.el
@@ -47,7 +47,7 @@ is a possibly empty forest of replies.
(apply 'append
(mapcar
(lambda (tree)
- (funcall mapper fn tree))
+ (funcall mapper function tree))
seq)))
(defun notmuch-query-map-threads (fn threads)