From: Richard Russon Date: Fri, 17 Aug 2018 13:25:42 +0000 (+0100) Subject: config: don't reused constants X-Git-Tag: 2019-10-25~690 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=69b79b4ff0b382d5551929e9d4f31df0694d712b;p=neomutt config: don't reused constants Fixes #1316 --- diff --git a/config/types.h b/config/types.h index b1cf353dc..1f2814ab2 100644 --- a/config/types.h +++ b/config/types.h @@ -41,10 +41,9 @@ #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 */