Fix missing string= argument

This commit is contained in:
Jai Flack 2022-03-25 00:02:48 +10:00
parent b9ce5fd132
commit 784252ea85
No known key found for this signature in database
GPG Key ID: B0073AB365D0807D
1 changed files with 2 additions and 2 deletions

View File

@ -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))))