]> granicus.if.org Git - neomutt/commitdiff
Replace `new` variable with `has_new_mail`
authorFederico Kircheis <federico.kircheis@gmail.com>
Sat, 29 Jun 2019 13:06:28 +0000 (15:06 +0200)
committerRichard Russon <rich@flatcap.org>
Fri, 5 Jul 2019 01:34:04 +0000 (02:34 +0100)
`new` is a reserved keyword in c++

browser.c
browser.h
imap/browse.c
nntp/browse.c
nntp/nntp.c
nntp/nntp.h

index a3a803c3f40592dc652fafcb3a9ae12342fe7ea9..2b51fa34ed3400048dc23151c8ee900ffb852894 100644 (file)
--- a/browser.c
+++ b/browser.c
@@ -539,7 +539,7 @@ static const char *folder_format_str(char *buf, size_t buflen, size_t col, int c
 
     case 'N':
       snprintf(fmt, sizeof(fmt), "%%%sc", prec);
-      snprintf(buf, buflen, fmt, folder->ff->new ? 'N' : ' ');
+      snprintf(buf, buflen, fmt, folder->ff->has_new_mail ? 'N' : ' ');
       break;
 
     case 'n':
@@ -645,7 +645,7 @@ static void add_folder(struct Menu *menu, struct BrowserState *state,
   if (m)
   {
     (state->entry)[state->entrylen].has_mailbox = true;
-    (state->entry)[state->entrylen].new = m->has_new;
+    (state->entry)[state->entrylen].has_new_mail = m->has_new;
     (state->entry)[state->entrylen].msg_count = m->msg_count;
     (state->entry)[state->entrylen].msg_unread = m->msg_unread;
   }
@@ -829,7 +829,8 @@ static int examine_mailboxes(struct Menu *menu, struct BrowserState *state)
     for (unsigned int i = 0; i < adata->groups_num; i++)
     {
       struct NntpMboxData *mdata = adata->groups_list[i];
-      if (mdata && (mdata->new || (mdata->subscribed && (mdata->unread || !C_ShowOnlyUnread))))
+      if (mdata && (mdata->has_new_mail ||
+                    (mdata->subscribed && (mdata->unread || !C_ShowOnlyUnread))))
       {
         add_folder(menu, state, mdata->group, NULL, NULL, NULL, mdata);
       }
index 9bdef94bc6c4d442eb201abcfd61ce4feb503bdf..318f5864e6367ed83d35613c23f8843a50b83f07 100644 (file)
--- a/browser.h
+++ b/browser.h
@@ -67,9 +67,9 @@ struct FolderFile
   char *name;
   char *desc;
 
-  bool new;       /**< true if mailbox has "new mail" */
-  int msg_count;  /**< total number of messages */
-  int msg_unread; /**< number of unread messages */
+  bool has_new_mail; /**< true if mailbox has "new mail" */
+  int msg_count;     /**< total number of messages */
+  int msg_unread;    /**< number of unread messages */
 
 #ifdef USE_IMAP
   char delim;
index ec402623d8ecc9ce5cc1ce6eafe4a8da62adaeb0..20349420833e80df9243e45151c08d6399a30939 100644 (file)
@@ -125,7 +125,7 @@ static void add_folder(char delim, char *folder, bool noselect, bool noinferiors
   if (np)
   {
     (state->entry)[state->entrylen].has_mailbox = true;
-    (state->entry)[state->entrylen].new = np->mailbox->has_new;
+    (state->entry)[state->entrylen].has_new_mail = np->mailbox->has_new;
     (state->entry)[state->entrylen].msg_count = np->mailbox->msg_count;
     (state->entry)[state->entrylen].msg_unread = np->mailbox->msg_unread;
   }
index 65ef7c6b9c5c944f22e8206fbd75d45dda2321af..d75c44413e1fc2572a69b8f2aadbf3e291c5e2d8 100644 (file)
@@ -104,7 +104,7 @@ const char *group_index_format_str(char *buf, size_t buflen, size_t col, int col
       if (folder->ff->nd->subscribed)
         snprintf(buf, buflen, fmt, ' ');
       else
-        snprintf(buf, buflen, fmt, folder->ff->new ? 'N' : 'u');
+        snprintf(buf, buflen, fmt, folder->ff->has_new_mail ? 'N' : 'u');
       break;
 
     case 'n':
index 6c76dbc110da5a46c8bb9232244a5eca083e939f..495a1faaedac972f90e72fabef02910ee58c0d6a 100644 (file)
@@ -2077,7 +2077,7 @@ int nntp_active_fetch(struct NntpAccountData *adata, bool new)
     for (; i < adata->groups_num; i++)
     {
       struct NntpMboxData *mdata = adata->groups_list[i];
-      mdata->new = true;
+      mdata->has_new_mail = true;
     }
   }
 
@@ -2184,7 +2184,7 @@ int nntp_check_new_groups(struct Mailbox *m, struct NntpAccountData *adata)
     for (; i < adata->groups_num; i++)
     {
       struct NntpMboxData *mdata = adata->groups_list[i];
-      mdata->new = true;
+      mdata->has_new_mail = true;
     }
 
     /* loading descriptions */
index b81eb94c84f403068f70a1600b4ef50e366b4cde..51537865bfbdb1a114fae9255009d917982521cf 100644 (file)
@@ -145,10 +145,10 @@ struct NntpMboxData
   anum_t last_loaded;
   anum_t last_cached;
   anum_t unread;
-  bool subscribed : 1;
-  bool new        : 1;
-  bool allowed    : 1;
-  bool deleted    : 1;
+  bool subscribed   : 1;
+  bool has_new_mail : 1;
+  bool allowed      : 1;
+  bool deleted      : 1;
   unsigned int newsrc_len;
   struct NewsrcEntry *newsrc_ent;
   struct NntpAccountData *adata;