]> Kevux Git Server - fll/commitdiff
Update: Use f_color_mode_not_e rather than f_color_mode_color_not_e.
authorKevin Day <thekevinday@gmail.com>
Sat, 24 Dec 2022 00:38:20 +0000 (18:38 -0600)
committerKevin Day <thekevinday@gmail.com>
Sat, 24 Dec 2022 00:38:20 +0000 (18:38 -0600)
The second 'color' in f_color_mode_color_not_e is redundant and inconsistent with the other parameters.
Remove it.

37 files changed:
level_0/f_color/c/color.c
level_0/f_color/c/color.h
level_0/f_color/c/color/common.h
level_0/f_color/tests/unit/c/test-color-load_context.c
level_2/fll_program/c/program.c
level_3/byte_dump/c/byte_dump.c
level_3/byte_dump/c/common.c
level_3/control/c/common.c
level_3/control/c/control.c
level_3/controller/c/common.c
level_3/controller/c/controller.c
level_3/fake/c/common.c
level_3/fake/c/fake.c
level_3/fake/c/private-build.c
level_3/fake/c/private-make-load_parameters.c
level_3/firewall/c/common.c
level_3/firewall/c/firewall.c
level_3/fss_basic_list_read/c/common.c
level_3/fss_basic_list_read/c/fss_basic_list_read.c
level_3/fss_basic_read/c/common.c
level_3/fss_basic_read/c/fss_basic_read.c
level_3/fss_embedded_list_read/c/common.c
level_3/fss_embedded_list_read/c/fss_embedded_list_read.c
level_3/fss_extended_list_read/c/common.c
level_3/fss_extended_list_read/c/fss_extended_list_read.c
level_3/fss_extended_read/c/common.c
level_3/fss_extended_read/c/fss_extended_read.c
level_3/fss_identify/c/common.c
level_3/fss_identify/c/fss_identify.c
level_3/fss_payload_read/c/common.c
level_3/fss_payload_read/c/fss_payload_read.c
level_3/fss_write/c/main/common.c
level_3/fss_write/c/main/print.c
level_3/iki_read/c/main/common.c
level_3/iki_write/c/main/common.c
level_3/status_code/c/main/common.c
level_3/utf8/c/main/common.c

index 11279f98e5ab900e88d3fcf5fd117845fcbbcd58..080ecb4f692c2ca8475ea8a6b78d9fe1e0d26583 100644 (file)
@@ -13,7 +13,7 @@ extern "C" {
 
     context->mode = mode;
 
-    if (mode == f_color_mode_color_not_e) {
+    if (mode == f_color_mode_not_e) {
       macro_f_color_t_set_none(context->list);
 
       context->format.begin = f_string_empty_s;
index 29a5606b7ff1e52991604d24072b9cdcfb2f7f72..14cdc082d007fb29c0ca9f781c3443ba149f4473 100644 (file)
@@ -39,7 +39,7 @@ extern "C" {
  * If you wish to use non-standard colors either redefine this function or don't use it.
  *
  * This only supports the following color modes:
- *   - f_color_mode_color_not_e
+ *   - f_color_mode_not_e
  *   - f_color_mode_dark_e
  *   - f_color_mode_light_e
  *
index eb360a52f1bd1786f6bdff7a0b618d4822d58f76..10821365fc796c813fbfebf89a19586c571cb4f1 100644 (file)
@@ -398,7 +398,7 @@ extern "C" {
 #ifndef _di_f_color_mode_e_
   enum {
     f_color_mode_none_e = 0,
-    f_color_mode_color_not_e,
+    f_color_mode_not_e,
     f_color_mode_dark_e,
     f_color_mode_light_e,
   }; // enum
index 6ca76847c051f9772b7404804a3fa1d7c00cdb63..7a6f5551660172ba67692a0e13b2144831b5e4bb 100644 (file)
@@ -27,7 +27,7 @@ void test__f_color_load_context__works(void **state) {
 
   uint8_t modes[4] = {
     f_color_mode_none_e,
-    f_color_mode_color_not_e,
+    f_color_mode_not_e,
     f_color_mode_dark_e,
     f_color_mode_light_e,
   };
@@ -58,7 +58,7 @@ void test__f_color_load_context__works(void **state) {
 
       assert_int_equal(status, statuss[j]);
 
-      if (modes[j] == f_color_mode_color_not_e) {
+      if (modes[j] == f_color_mode_not_e) {
         assert_ptr_equal(context.set.reset.before, &f_string_empty_s);
         assert_ptr_equal(context.set.reset.after, &f_string_empty_s);
 
index 37ff9d18bfb9a016224e043e43f7db9bb2c40d4b..0342de4804878830a59733ef8668b1e80ec11cd1 100644 (file)
@@ -35,7 +35,7 @@ extern "C" {
         }
       }
       else {
-        main->context.mode = f_color_mode_color_not_e;
+        main->context.mode = f_color_mode_not_e;
       }
     }
 
index 45eac35cf4c977206b57cc3ad6b0e8bb49198ac6..4f6ee4222793f3229f656836ea4201e1abbb8134 100644 (file)
@@ -25,7 +25,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 1d14f5679eef07ec5f4c812cf49eeb3bdbe102a3..223df58940c97056c75fa99acf722476c6cd8ea2 100644 (file)
@@ -104,7 +104,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 8c5ae9e1812edf0089df7be786850dec257ae6cd..9cbbbb559b0246551cd990e5b37e761f284e7f32 100644 (file)
@@ -207,7 +207,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 41e66ac8729bf981c83b2423ac8e2fb6a2bdc015..387e5b36ed9efc1d0db25848cb55668363e4c48f 100644 (file)
@@ -26,7 +26,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index dd09a311025773dff2d5df1f00ff6f9ba349bcce..29d61fe307f8401caf3cec987b35618a5bc473a0 100644 (file)
@@ -639,7 +639,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index bf1a1937fb7fae8f0070e6a8569e3906e48c7eac..00dc115b2e91c27fb2627873bd217d2ae4338c95 100644 (file)
@@ -31,7 +31,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 84b220bb8d017cbc44073a1143b369b9280eef3b..36472452ac345769df3f41101e515ea7f3daa392 100644 (file)
@@ -149,7 +149,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 341b550e124e4e3e58d3c75e8f48ed9e781e1905..fee309a40e093c5039ea1b05e7589272f8995280 100644 (file)
@@ -32,7 +32,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index a1eefb424e8b1ab1f9f07fecfb529b6bf4560f44..2f447721ff76785f4f511dbc79b0d27cfef5407e 100644 (file)
@@ -576,7 +576,7 @@ extern "C" {
       else if (data->main->context.mode == f_color_mode_light_e) {
         memcpy(argument_string + f_console_symbol_short_inverse_s.used, f_console_standard_short_light_s.string, sizeof(f_char_t) * f_console_standard_short_light_s.used);
       }
-      else if (data->main->context.mode == f_color_mode_color_not_e) {
+      else if (data->main->context.mode == f_color_mode_not_e) {
         memcpy(argument_string + f_console_symbol_short_inverse_s.used, f_console_standard_short_no_color_s.string, sizeof(f_char_t) * f_console_standard_short_no_color_s.used);
       }
 
index 689e94db3fbcfb137d3439f2276c29123a394430..25d5b7aa38654f9dacafe9e11e6f6a6baa6a8c0a 100644 (file)
@@ -24,7 +24,7 @@ extern "C" {
         return;
       }
 
-      if (data_make->main->context.mode == f_color_mode_color_not_e) {
+      if (data_make->main->context.mode == f_color_mode_not_e) {
         if (data_make->main->parameters.array[fake_parameter_no_color_e].flag & f_console_flag_normal_e) {
           *status = f_string_dynamic_append(f_console_symbol_short_normal_s, &data_make->parameter.color.array[data_make->parameter.color.used]);
         }
index cbfc3df09081c7ab66a621795bf3d82527f4e3cb..22c3b9b0a28d1dd0855687e8311166a1b396c6e3 100644 (file)
@@ -140,7 +140,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 340cfa5cebfaca2030fc08ddf0cd99fe45574320..4cdc0d637e79dc91f3b9038c1d6fc157f6faf4eb 100644 (file)
@@ -33,7 +33,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index aaedcf4825ac7c3dc64f555f19f9388b22a213c4..a0b6675ecd3ae643edd0f4cc84015fe8d8c75b50 100644 (file)
@@ -98,7 +98,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 073ca6c761243ad95b4dcf1b908da3a4f2f65341..4e67ee57c125fe91278a0920100b95b03d817e8e 100644 (file)
@@ -26,7 +26,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index dcefd29cc11e0cedd2373340e1a6a917c1ed2242..62e529c73dbe1a54f479883b47d6c76ab8ed501c 100644 (file)
@@ -97,7 +97,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 6ffd56f26e8ffd3a4729759792f782b24fc1fe4d..27d0b8c66fe204109f17f966cf3aa0cb72212ef3 100644 (file)
@@ -26,7 +26,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 75db20dc70d237a84b5b95b8c89fd797ceb64884..3a22cea1dcc901738134bcc2c296f5e667fc8daf 100644 (file)
@@ -96,7 +96,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 5dbbd7b8ac17d22aecbbc9f9741f92096f39863e..98585651e4f3f8b47db0c02f192eb026fb8cc39a 100644 (file)
@@ -26,7 +26,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index a58d3f79cb6944eb3e6eb38b49a5056146515284..fe6aa5e34d1c8f44d2f443980d2708f7532b8737 100644 (file)
@@ -104,7 +104,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index d7100c618fa8c9f01f6a4c7599afa8fe31735310..474eb19aea7fe749866ee93affbd7097164eda4c 100644 (file)
@@ -26,7 +26,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 66048fe105c9096cc291999c913253728f26befb..13a0d14920be750de93f597fc4c847a6ae5adbb8 100644 (file)
@@ -97,7 +97,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index ddcc0d3a7199ca536a107a83b4e9fe49293df95e..0eac24c46cc86d4c3a96b1bd3d4c5c9bb3b74803 100644 (file)
@@ -26,7 +26,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 89a5c5b56af72d605980ff2f521c23a58f1ddf4c..1a305cb0ac28c7076bc2f4f5e9dcdc8b1f02f66f 100644 (file)
@@ -64,7 +64,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 34f830c10c49766d796b88d0f1ba89ea6beb49c5..395d36b8a69e10138ae233ce9fed0ea3ccc5f765 100644 (file)
@@ -25,7 +25,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index c5d93b66395fdbece1acad16b74320ccdc00eced..617837041f0819f5e6405a368df0f6e6c19dc4f6 100644 (file)
@@ -98,7 +98,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 105460ac9ce78ec8a41b488e55ae8269c703ce9b..f20813f671fb4b83f24f024d757acdcdbbf81cf6 100644 (file)
@@ -26,7 +26,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 48794386ded222aeeb7d1be747b439201c3b115e..a110f3c47fbc9221bf84ee00eee1d4a96dc48023 100644 (file)
@@ -97,7 +97,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 1c9813473e0088680724f82d3dcfdcbb10e719d2..eeceb2823f447e880fc8d72a54b50369546415b3 100644 (file)
@@ -160,7 +160,6 @@ extern "C" {
     fl_print_format("  For the pipe, an Object is terminated by either a Backspace character '%[\\b%]' (%[U+0008%])", print.to, print.set->notable, print.set->notable, print.set->notable, print.set->notable);
     fl_print_format(" or a Form Feed character '%[\\f%]' (%[U+000C%]).%r", print.to, print.set->notable, print.set->notable, print.set->notable, print.set->notable, f_string_eol_s);
     fl_print_format("  The end of the pipe represents the end of any Object or Content.%r", print.to, f_string_eol_s);
-
   }
 #endif // _di_fss_write_print_help_pipe_
 
index 2903f9e4e690edd547fea407343efa176984fc75..205efebe7283e303db583e04e8ad45ff9d085ae2 100644 (file)
@@ -100,7 +100,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index 8a9d1f69b2157f10cab14dabc37e0104c1e09efe..af8390503814841bd8ad53d6d5aaae354a82eae6 100644 (file)
@@ -76,7 +76,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index a7a7529a3c9c738a8694ad86c0a8fe642e439736..8e05fe6ea91fecdddfe588448c8c4d0f68635181 100644 (file)
@@ -72,7 +72,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);
 
index b763aa0c7291d111f35cfb705b9ea2aaffa8b08e..6f5653b5d5f155daf1a5fb58c516803a36d39090 100644 (file)
@@ -113,7 +113,7 @@ extern "C" {
         choices.array = choices_array;
         choices.used = 3;
 
-        const uint8_t modes[3] = { f_color_mode_color_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
 
         setting->status = fll_program_parameter_process_context(choices, modes, F_true, main);