]> granicus.if.org Git - neomutt/commitdiff
Replace `new` variable with `new_label`
authorFederico Kircheis <federico.kircheis@gmail.com>
Thu, 4 Jul 2019 18:18:15 +0000 (20:18 +0200)
committerRichard Russon <rich@flatcap.org>
Fri, 5 Jul 2019 01:34:07 +0000 (02:34 +0100)
`new` is a reserved keyword in c++

mutt_header.c

index 2c3dede51b8acb035323f06b1f03566e133d9018..4f5ebd31af06bad5990ece28943b4adb5961f297 100644 (file)
@@ -94,21 +94,21 @@ static void label_ref_inc(struct Mailbox *m, char *label)
 
 /**
  * label_message - add an X-Label: field
- * @param[in]  m   Mailbox
- * @param[in]  e   Email
- * @param[out] new Set to true if this is a new label
+ * @param[in]  m         Mailbox
+ * @param[in]  e         Email
+ * @param[out] new_label Set to true if this is a new label
  * @retval true If the label was added
  */
-static bool label_message(struct Mailbox *m, struct Email *e, char *new)
+static bool label_message(struct Mailbox *m, struct Email *e, char *new_label)
 {
   if (!e)
     return false;
-  if (mutt_str_strcmp(e->env->x_label, new) == 0)
+  if (mutt_str_strcmp(e->env->x_label, new_label) == 0)
     return false;
 
   if (e->env->x_label)
     label_ref_dec(m, e->env->x_label);
-  mutt_str_replace(&e->env->x_label, new);
+  mutt_str_replace(&e->env->x_label, new_label);
   if (e->env->x_label)
     label_ref_inc(m, e->env->x_label);