From 4ddb5ab4dd42208ba24989f188bdd06ab7865b5e Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 27 Oct 2010 17:54:38 -0700 Subject: [PATCH] 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. --- emacs/notmuch-query.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.43.0