From c010dd7a6b68a7ae2de9cb4444e92fa563be8197 Mon Sep 17 00:00:00 2001 From: Tatsuya Kinoshita Date: Sun, 20 Mar 2016 19:13:29 +0900 Subject: Fix reverse ordered config parameters --- rc.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'rc.c') diff --git a/rc.c b/rc.c index 5fcbf42..7de87b8 100644 --- a/rc.c +++ b/rc.c @@ -1512,6 +1512,7 @@ panel_set_option(struct parsed_tagarg *arg) { FILE *f = NULL; char *p; + Str s = Strnew(), tmp; if (config_file == NULL) { disp_message("There's no config file... config not saved", FALSE); @@ -1527,14 +1528,17 @@ panel_set_option(struct parsed_tagarg *arg) if (arg->value) { p = conv_to_system(arg->value); if (set_param(arg->arg, p)) { - if (f) - fprintf(f, "%s %s\n", arg->arg, p); + tmp = Sprintf("%s %s\n", arg->arg, p); + Strcat(tmp, s); + s = tmp; } } arg = arg->next; } - if (f) + if (f) { + fputs(s->ptr, f); fclose(f); + } sync_with_option(); backBf(); } -- cgit v1.2.3