]> granicus.if.org Git - neomutt/commitdiff
config: don't reused constants 1226/head
authorRichard Russon <rich@flatcap.org>
Fri, 17 Aug 2018 13:25:42 +0000 (14:25 +0100)
committerRichard Russon <rich@flatcap.org>
Fri, 17 Aug 2018 13:25:52 +0000 (14:25 +0100)
Fixes #1316

config/types.h

index b1cf353dc54a1943ee086face8760734e9b457be..1f2814ab2f335740a3a9322bd58f6cc40d688b69 100644 (file)
 
 #define DTYPE(x) ((x) & 0x1f) /**< Mask for the Data Type */
 
-#define DT_NOT_EMPTY    0x40  /**< Empty strings are not allowed */
-#define DT_NOT_NEGATIVE 0x80  /**< Negative numbers are not allowed */
-
-#define DT_MAILBOX      0x40  /**< DT_PATH: Don't perform path expansions */
+#define DT_NOT_EMPTY     0x40  /**< Empty strings are not allowed */
+#define DT_NOT_NEGATIVE  0x80  /**< Negative numbers are not allowed */
+#define DT_MAILBOX      0x100  /**< DT_PATH: Don't perform path expansions */
 
 /* subtypes for... */
 #define DT_SUBTYPE_MASK 0xfe0 /**< Mask for the Data Subtype */