From: Kevin Day Date: Tue, 24 Jan 2023 05:32:01 +0000 (-0600) Subject: Bugfix: Fakefile processing with color context is producing extra spaces when unquoted. X-Git-Tag: 0.6.4~85 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=3713a5f0bd90d32f564afaca29f01d9ccf329cfb;p=fll Bugfix: Fakefile processing with color context is producing extra spaces when unquoted. Do not generate a new argument when calling fake_make_operate_expand_context(). The color context should combine with existing arguments. This does not handle the last context argument and more work is likely needed to handle that one. Remove the not quoted check that always generates a new argument. --- diff --git a/level_3/fake/c/private-make-operate.c b/level_3/fake/c/private-make-operate.c index 22a629c..525e4e9 100644 --- a/level_3/fake/c/private-make-operate.c +++ b/level_3/fake/c/private-make-operate.c @@ -615,7 +615,6 @@ extern "C" { break; } - } *status = f_string_dynamic_append_nulless(reserved_value[k]->array[l], &data_make->cache_arguments.array[data_make->cache_arguments.used]); @@ -780,7 +779,7 @@ extern "C" { } } - if (!(content.array[i].start == iki_data->variable.array[0].start && content.array[i].stop == iki_data->variable.array[0].stop && !quotes.array[i]) || !quotes.array[i] || i + 1 == content.used) { + if (!(content.array[i].start == iki_data->variable.array[0].start && content.array[i].stop == iki_data->variable.array[0].stop && !quotes.array[i]) || i + 1 == content.used) { ++data_make->cache_arguments.used; *status = f_string_dynamics_increase(fake_default_allocation_small_d, &data_make->cache_arguments); @@ -1168,10 +1167,6 @@ extern "C" { if (F_status_is_error_not(status)) { status = f_string_dynamic_append_nulless(*context, &data_make->cache_arguments.array[data_make->cache_arguments.used]); - - if (F_status_is_error_not(status)) { - ++data_make->cache_arguments.used; - } } }