summaryrefslogtreecommitdiffstats
path: root/m_option.h
diff options
context:
space:
mode:
Diffstat (limited to 'm_option.h')
-rw-r--r--m_option.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/m_option.h b/m_option.h
index ca70011393..58deb9be8a 100644
--- a/m_option.h
+++ b/m_option.h
@@ -347,12 +347,8 @@ struct m_option {
*/
#define M_OPT_NOSAVE (1<<5)
-/// \brief The \ref Config will emulate the old behavior by pushing the
-/// option only if it was set by the user.
-#define M_OPT_OLD (1<<6)
-
/// The option should be set during command line pre-parsing
-#define M_OPT_PRE_PARSE (1<<7)
+#define M_OPT_PRE_PARSE (1<<6)
/// \defgroup OldOptionFlags Backward compatibility
///
@@ -365,7 +361,6 @@ struct m_option {
#define CONF_NOCMD M_OPT_NOCMD
#define CONF_GLOBAL M_OPT_GLOBAL
#define CONF_NOSAVE M_OPT_NOSAVE
-#define CONF_OLD M_OPT_OLD
#define CONF_PRE_PARSE M_OPT_PRE_PARSE
///@}