mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
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.
This commit is contained in:
parent
c506e1034b
commit
4ddb5ab4dd
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue