]> granicus.if.org Git - neomutt/commitdiff
move private flags
authorRichard Russon <rich@flatcap.org>
Sat, 8 Jun 2019 22:16:25 +0000 (23:16 +0100)
committerRichard Russon <rich@flatcap.org>
Wed, 12 Jun 2019 23:23:35 +0000 (00:23 +0100)
Move the private config flags to the 'top' of the variable.

config/types.h

index 290c84e0c7cfdcc4cd21f26725da5f946606c7de..c46a5ef1f909160f304772478570342ad6fe8450 100644 (file)
 /* subtypes for... */
 #define DT_SUBTYPE_MASK  0x0FE0  ///< Mask for the Data Subtype
 
-/* Private config item flags */
-#define DT_INHERITED    (1 << 12)  ///< Config item is inherited
-#define DT_INITIAL_SET  (1 << 13)  ///< Config item must have its initial value freed
-#define DT_DISABLED     (1 << 14)  ///< Config item is disabled
-#define DT_MY_CONFIG    (1 << 15)  ///< Config item is a "my_" variable
-
 typedef uint16_t ConfigRedrawFlags; ///< Flags for redraw/resort, e.g. #R_INDEX
 #define R_NONE               0      ///< No refresh/resort flags
 #define R_INDEX        (1 << 0)     ///< Redraw the index menu (MENU_MAIN)
@@ -74,4 +68,10 @@ typedef uint16_t ConfigRedrawFlags; ///< Flags for redraw/resort, e.g. #R_INDEX
 
 #define IS_SENSITIVE(x) (((x).flags & F_SENSITIVE) == F_SENSITIVE)
 
+/* Private config item flags */
+#define DT_INHERITED    (1 << 28)  ///< Config item is inherited
+#define DT_INITIAL_SET  (1 << 29)  ///< Config item must have its initial value freed
+#define DT_DISABLED     (1 << 30)  ///< Config item is disabled
+#define DT_MY_CONFIG    (1 << 31)  ///< Config item is a "my_" variable
+
 #endif /* MUTT_CONFIG_TYPES_H */