summaryrefslogtreecommitdiffstats
path: root/core/m_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/m_config.h')
-rw-r--r--core/m_config.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/core/m_config.h b/core/m_config.h
index b31d7f5406..6a5c471867 100644
--- a/core/m_config.h
+++ b/core/m_config.h
@@ -37,8 +37,7 @@ struct m_obj_desc;
// Config option
struct m_config_option {
struct m_config_option *next;
- // For positional parameters
- int pos;
+ bool is_generated : 1;
// Full name (ie option-subopt).
char *name;
// Option description.
@@ -73,7 +72,6 @@ struct m_profile {
typedef struct m_config {
// Registered options.
struct m_config_option *opts; // all options, even suboptions
- int num_pos_opts;
// When options are set (via m_config_set_option or m_config_set_profile),
// back up the old value (unless it's already backed up). Used for restoring