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, 2 insertions, 2 deletions
diff --git a/core/m_config.h b/core/m_config.h
index c48a4f1281..1ee7ecf1c0 100644
--- a/core/m_config.h
+++ b/core/m_config.h
@@ -44,8 +44,6 @@ struct m_config_option {
const struct m_option *opt;
// Raw value of the option.
void *data;
- // Raw value of the backup of the global value (or NULL).
- void *global_backup;
// If this is a suboption, the option that contains this option.
struct m_config_option *parent;
// If this option aliases another, more important option. The alias_owner
@@ -70,6 +68,8 @@ typedef struct m_config {
// Depth when recursively including profiles.
int profile_depth;
+ struct m_opt_backup *backup_opts;
+
bool use_profiles;
int (*includefunc)(struct m_config *conf, char *filename);