unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH] emacs: wrap current search in parens when filtering
@ 2015-09-02 21:57 Uli Scholler
  2015-09-03  7:32 ` Tomi Ollila
  0 siblings, 1 reply; 8+ messages in thread
From: Uli Scholler @ 2015-09-02 21:57 UTC (permalink / raw)
  To: notmuch; +Cc: Uli Scholler

When filtering the current search further with notmuch-search-filter,
wrap the current search in parens.

This fixes unexpected behavior when the current search is
complex (like "(tag:this and date:one_week_ago..) or tag:that").
---
 emacs/notmuch.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/emacs/notmuch.el b/emacs/notmuch.el
index 5284e77..a98ec96 100644
--- a/emacs/notmuch.el
+++ b/emacs/notmuch.el
@@ -989,7 +989,7 @@ current search results AND the additional query string provided."
 			 query)))
     (notmuch-search (if (string= notmuch-search-query-string "*")
 			grouped-query
-		      (concat notmuch-search-query-string " and " grouped-query)) notmuch-search-oldest-first)))
+		      (concat "(" notmuch-search-query-string ") and " grouped-query)) notmuch-search-oldest-first)))
 
 (defun notmuch-search-filter-by-tag (tag)
   "Filter the current search results based on a single tag.
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2015-09-07 12:58 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-02 21:57 [PATCH] emacs: wrap current search in parens when filtering Uli Scholler
2015-09-03  7:32 ` Tomi Ollila
2015-09-03 21:54   ` [PATCH v2] " Uli Scholler
2015-09-06  2:35     ` David Bremner
2015-09-06  9:19       ` Tomi Ollila
2015-09-06 21:29         ` [PATCH v3] " Uli Scholler
2015-09-07  6:14           ` Tomi Ollila
2015-09-07 12:50           ` David Bremner

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).