summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-07-21 17:28:07 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-07-22 11:07:13 -0700
commitac4ef84a5d2dc696f3f9e61d8815d1569e181edc (patch)
tree3b0c473d2fcd0bc736b610b8a9a3ded5f44bedc0
parentce74d0e540e3d76671a7c4badb0088910b00ab33 (diff)
downloaddotfiles-ac4ef84a5d2dc696f3f9e61d8815d1569e181edc.tar.gz
slightly simplify searches given recent annex mbox expansion changes
-rw-r--r--.emacs.d/init.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index d05e9ef9..210a8fc5 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -2889,8 +2889,8 @@ mutt's review view, after exiting EDITOR."
;; We're only really interested in recent mail for all these saved
;; searches: for older mail I do ephemeral searches. Take advantage
;; of this to limit the number of results we're ever asking Gnus to
- ;; read. An alternative to "not path:annex/**" might be "tag:unread".
- do (cl-callf spw/nm& (cdr (assq 'query alist)) "not path:annex/**")
+ ;; read. An alternative to "not folder:annex" might be "tag:unread".
+ do (cl-callf spw/nm& (cdr (assq 'query alist)) "not folder:annex")
if (gnus-group-entry nname) do
(gnus-group-set-parameter nname 'nnselect-specs specs)
;; From `gnus-group-make-search-group' (though marked "temporary"?).