]> git.notmuchmail.org Git - notmuch/commitdiff
emacs: make show set --exclude=false
authorMark Walters <markwalters1009@gmail.com>
Sat, 7 Apr 2012 16:10:08 +0000 (17:10 +0100)
committerDavid Bremner <bremner@debian.org>
Sun, 8 Apr 2012 02:06:31 +0000 (23:06 -0300)
Show has to set --exclude=false to deal with cases where it is asked
to show a single excluded message. It uses JSON so it can easily pass
the exclude information to the user.

emacs/notmuch-show.el

index 6d3fe62abf0a3a076af9568875b229f4cecfb054..30b26d1f998ed8d4b325114599b2d03b7ef39173 100644 (file)
@@ -1060,13 +1060,15 @@ function is used."
                       (append (list "\'") basic-args
                               (list "and (" notmuch-show-query-context ")\'"))
                     (append (list "\'") basic-args (list "\'")))))
-       (notmuch-show-insert-forest (notmuch-query-get-threads args))
+       (notmuch-show-insert-forest (notmuch-query-get-threads
+                                    (cons "--exclude=false" args)))
        ;; If the query context reduced the results to nothing, run
        ;; the basic query.
        (when (and (eq (buffer-size) 0)
                   notmuch-show-query-context)
          (notmuch-show-insert-forest
-          (notmuch-query-get-threads basic-args))))
+          (notmuch-query-get-threads
+           (cons "--exclude=false" basic-args)))))
 
       (jit-lock-register #'notmuch-show-buttonise-links)