summaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
Diffstat (limited to 'options.c')
-rw-r--r--options.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/options.c b/options.c
index ffea70be..9c260e26 100644
--- a/options.c
+++ b/options.c
@@ -647,11 +647,14 @@ options_style_update_old(struct options *oo, struct options_entry *o)
size = strrchr(o->name, '-') - o->name;
xsnprintf(newname, sizeof newname, "%.*s-bg", size, o->name);
- options_set_number(oo, newname, o->style.bg);
+ if (options_get(oo, newname) != NULL)
+ options_set_number(oo, newname, o->style.bg);
xsnprintf(newname, sizeof newname, "%.*s-fg", size, o->name);
- options_set_number(oo, newname, o->style.fg);
+ if (options_get(oo, newname) != NULL)
+ options_set_number(oo, newname, o->style.fg);
xsnprintf(newname, sizeof newname, "%.*s-attr", size, o->name);
- options_set_number(oo, newname, o->style.attr);
+ if (options_get(oo, newname) != NULL)
+ options_set_number(oo, newname, o->style.attr);
}