summaryrefslogtreecommitdiffstats
path: root/m_option.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-10-28 20:29:47 +0100
committerwm4 <wm4@nowhere>2012-10-30 19:50:22 +0100
commit0502b6967275569fe0bc2ca69c55b491cc9f6bd2 (patch)
treeadc769f2d72a144139935f863bfaf035311a417c /m_option.h
parentf211733123cb501258ee8be6069b4c4daa4c79ea (diff)
downloadmpv-0502b6967275569fe0bc2ca69c55b491cc9f6bd2.tar.bz2
mpv-0502b6967275569fe0bc2ca69c55b491cc9f6bd2.tar.xz
cleanup: remove M_OPT_NOCMD
Unused.
Diffstat (limited to 'm_option.h')
-rw-r--r--m_option.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/m_option.h b/m_option.h
index 94d832eb6d..75f1c709d1 100644
--- a/m_option.h
+++ b/m_option.h
@@ -313,9 +313,6 @@ struct m_option {
// The option is forbidden in config files.
#define M_OPT_NOCFG (1 << 2)
-// The option is forbidden on the command line.
-#define M_OPT_NOCMD (1 << 3)
-
// This option can't be set per-file when used with struct m_config.
#define M_OPT_GLOBAL (1 << 4)
@@ -340,7 +337,6 @@ struct m_option {
#define CONF_MAX M_OPT_MAX
#define CONF_RANGE M_OPT_RANGE
#define CONF_NOCFG M_OPT_NOCFG
-#define CONF_NOCMD M_OPT_NOCMD
#define CONF_GLOBAL M_OPT_GLOBAL
#define CONF_PRE_PARSE M_OPT_PRE_PARSE