From 2236a944ba38c1c4a28333a45e55f9af86a6c4b4 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 5 Jan 2025 14:32:53 -0600 Subject: [PATCH] Update: Clarify precedence of the --select for IKI Read. The `--select` parameter is processed after the `--line` parameter. --- level_3/iki_read/c/main/print/message.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/level_3/iki_read/c/main/print/message.c b/level_3/iki_read/c/main/print/message.c index 4209484..0761b6c 100644 --- a/level_3/iki_read/c/main/print/message.c +++ b/level_3/iki_read/c/main/print/message.c @@ -104,13 +104,14 @@ extern "C" { fl_print_format(" with %[%r%r%]", print->to, print->set->notable, f_console_symbol_long_normal_s, iki_read_long_name_s, print->set->notable); fl_print_format(" will result in a total number of Variables matching the Vocabulary name.%r%r", print->to, f_string_eol_s, f_string_eol_s); - fl_print_format(" The %[%r%r%] parameter", print->to, print->set->notable, f_console_symbol_long_normal_s, iki_read_long_name_s, print->set->notable); fl_print_format(" has precedence over the %[%r%r%] parameter.%r%r", print->to, print->set->notable, f_console_symbol_long_normal_s, iki_read_long_at_s, print->set->notable, f_string_eol_s, f_string_eol_s); fl_print_format(" The %[%r%r%] parameter", print->to, print->set->notable, f_console_symbol_long_normal_s, iki_read_long_at_s, print->set->notable); fl_print_format(" has precedence over the %[%r%r%] parameter.%r%r", print->to, print->set->notable, f_console_symbol_long_normal_s, iki_read_long_line_s, print->set->notable, f_string_eol_s, f_string_eol_s); + fl_print_format(" The %[%r%r%] parameter", print->to, print->set->notable, f_console_symbol_long_normal_s, iki_read_long_line_s, print->set->notable); + fl_print_format(" has precedence over the %[%r%r%] parameter.%r%r", print->to, print->set->notable, f_console_symbol_long_normal_s, iki_read_long_select_s, print->set->notable, f_string_eol_s, f_string_eol_s); fl_print_format(" The default behavior is to only display Content portion of the IKI Variable.%r", print->to, f_string_eol_s); } -- 1.8.3.1