X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=status.c;h=6c613eb64343dc55a002e91bb097ff6ae91c46d0;hp=86de939e13c1ebf2db4c02e53f2a9f5d515aec89;hb=5ed593da25809636fe4266e212d8d382a738649b;hpb=238b70e39b78f585c586bd51aef41988b3cc73d1 diff --git a/status.c b/status.c index 86de939..6c613eb 100644 --- a/status.c +++ b/status.c @@ -14,12 +14,12 @@ #include #include #include +#include #include "mutt.h" #include "mutt_menu.h" #include "mutt_curses.h" #include "sort.h" -#include "mapping.h" #include "mx.h" #include "buffy.h" @@ -81,7 +81,6 @@ static const char *status_format_str (char *buf, size_t buflen, char op, case 'B': snprintf (fmt, sizeof (fmt), "%%%ss", prefix); -#ifdef USE_COMPRESSED if (Context && Context->compressinfo && Context->realpath) { if ((p = strrchr (Context->realpath, '/'))) m_strcpy(tmp, sizeof(tmp), p + 1); @@ -89,7 +88,6 @@ static const char *status_format_str (char *buf, size_t buflen, char op, m_strcpy(tmp, sizeof(tmp), Context->realpath); } else -#endif if (Context && Context->path) { if ((p = strrchr (Context->path, '/'))) m_strcpy(tmp, sizeof(tmp), p + 1); @@ -117,13 +115,11 @@ static const char *status_format_str (char *buf, size_t buflen, char op, case 'f': snprintf (fmt, sizeof (fmt), "%%%ss", prefix); -#ifdef USE_COMPRESSED if (Context && Context->compressinfo && Context->realpath) { m_strcpy(tmp, sizeof(tmp), Context->realpath); mutt_pretty_mailbox (tmp); } else -#endif if (Context && Context->path) { m_strcpy(tmp, sizeof(tmp), Context->path); mutt_pretty_mailbox (tmp); @@ -226,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)