X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=status.c;h=6c613eb64343dc55a002e91bb097ff6ae91c46d0;hp=47abf57180bcfb90ba4e7a93aa0929725327a82c;hb=b934795055e8c16e6cb7c9687a4dce815cb300e6;hpb=3cb53df6efcb6b137bbab53c16da4eddbc5a1b2b diff --git a/status.c b/status.c index 47abf57..6c613eb 100644 --- a/status.c +++ b/status.c @@ -222,21 +222,11 @@ static const char *status_format_str (char *buf, size_t buflen, char op, int i = 0; if (Context) { - i = option (OPTATTACHMSG) ? 3 : ((Context->readonly || - Context->dontwrite) ? 2 : (Context-> - changed - || ( -#ifdef USE_IMAP - /* deleted doesn't necessarily mean changed in IMAP */ - Context-> - magic - != - M_IMAP - && -#endif - Context-> - deleted)) - ? 1 : 0); + /* XXX: deleted doesn't necessarily mean changed in IMAP */ + i = option (OPTATTACHMSG) ? 3 + : ((Context->readonly || Context->dontwrite) ? 2 + : (Context->changed || (Context-> magic != M_IMAP && Context-> + deleted)) ? 1 : 0); } if (!StChars)