From 784252ea854220cdde153e6efdd630ccd7655d0d Mon Sep 17 00:00:00 2001 From: Jai Flack Date: Fri, 25 Mar 2022 00:02:48 +1000 Subject: [PATCH] Fix missing string= argument --- gnus-search-mu.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnus-search-mu.el b/gnus-search-mu.el index 0276d0f..b587f14 100644 --- a/gnus-search-mu.el +++ b/gnus-search-mu.el @@ -151,9 +151,9 @@ This can also be set per-server." (format "%d-%02d-%02d" y m d))))) (mu-flag (flag) ;; Only change what doesn't match - (cond ((string= "flag") + (cond ((string= flag "flag") "flagged") - ((string= "read") + ((string= flag "read") "seen") (t flag))))