From 370cf0357775810c43eba21eafd463f75949b9a2 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 5 Jan 2025 10:33:21 -0600 Subject: [PATCH] Update: Clarify precedence of the --name, --at, and --line for IKI Read. Add description of the order of operations, or precedence, for the `--name`, `--at`, and the `--line` parameters. --- level_3/iki_read/c/iki_read.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/level_3/iki_read/c/iki_read.c b/level_3/iki_read/c/iki_read.c index 01ca204..ead184e 100644 --- a/level_3/iki_read/c/iki_read.c +++ b/level_3/iki_read/c/iki_read.c @@ -132,6 +132,12 @@ extern "C" { fl_print_format(" with %[%r%r%]", file.stream, context.set.notable, f_console_symbol_long_enable_s, iki_read_long_name_s, context.set.notable); fl_print_format(" will result in a total number of Variables matching the Vocabulary name.%r%r", file.stream, f_string_eol_s, f_string_eol_s); + fl_print_format(" The %[%r%r%] parameter", file.stream, context.set.notable, f_console_symbol_long_enable_s, iki_read_long_name_s, context.set.notable); + fl_print_format(" has precedence over the %[%r%r%] parameter.%r%r", file.stream, context.set.notable, f_console_symbol_long_enable_s, iki_read_long_at_s, context.set.notable, f_string_eol_s, f_string_eol_s); + + fl_print_format(" The %[%r%r%] parameter", file.stream, context.set.notable, f_console_symbol_long_enable_s, iki_read_long_at_s, context.set.notable); + fl_print_format(" has precedence over the %[%r%r%] parameter.%r%r", file.stream, context.set.notable, f_console_symbol_long_enable_s, iki_read_long_line_s, context.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%r", file.stream, f_string_eol_s, f_string_eol_s); funlockfile(file.stream); -- 1.8.3.1