]> git.llucax.com Git - software/mutt-debian.git/blobdiff - status.c
sidebar-{dotted,sorted}: documented the options that those two patches are introducin...
[software/mutt-debian.git] / status.c
index db5cbfbfaeae37b2ec012ca1e2637b83817dff62..1bb9a5a45b6713b4f1aa372f4093e45e98ed1950 100644 (file)
--- a/status.c
+++ b/status.c
@@ -209,17 +209,15 @@ status_format_str (char *buf, size_t buflen, size_t col, char op, const char *sr
 
     case 'r':
     {
-      int i = 0;
+      size_t 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);
+          Context->dontwrite) ? 2 : (Context->changed ||
+          /* deleted doesn't necessarily mean changed in IMAP */
+          (Context->magic != M_IMAP &&
+           Context->deleted)) ? 1 : 0);
       }
       
       if (!StChars)