X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=status.c;h=18c96846b95cc3ad59842f67a2f996dff1551aaf;hp=47abf57180bcfb90ba4e7a93aa0929725327a82c;hb=dbb9a1e16d03a2d4664d6dc6a30c721b889d4982;hpb=3cb53df6efcb6b137bbab53c16da4eddbc5a1b2b diff --git a/status.c b/status.c index 47abf57..18c9684 100644 --- a/status.c +++ b/status.c @@ -16,9 +16,10 @@ #include #include +#include + #include "mutt.h" #include "mutt_menu.h" -#include "mutt_curses.h" #include "sort.h" #include "mx.h" #include "buffy.h" @@ -55,7 +56,7 @@ static char *get_sort_str (char *buf, size_t buflen, int method) * %s = current sorting method ($sort) * %S = current aux sorting method ($sort_aux) * %t = # of tagged messages [option] - * %v = Mutt-ng version + * %v = Madmutt version * %V = currently active limit pattern [option] */ static const char *status_format_str (char *buf, size_t buflen, char op, const char *src, const char *prefix, @@ -222,21 +223,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)