]> Kevux Git Server - fll/commitdiff
Bugfix: incorrect printout when using -w/--whole mode.
authorKevin Day <thekevinday@gmail.com>
Sat, 19 Sep 2020 03:11:43 +0000 (22:11 -0500)
committerKevin Day <thekevinday@gmail.com>
Sat, 19 Sep 2020 03:11:43 +0000 (22:11 -0500)
The start range is not being set when it should be resulting in the wrong start point being used when printing a given range.

level_3/iki_read/c/private-iki_read.c

index 301bb4d5a7e8ae493a518149415b8e3cb780300e..37a47ab2da63658ba5d9d444da9d6a0001dc462d 100644 (file)
@@ -506,6 +506,7 @@ extern "C" {
     f_string_range_t range = buffer_range;
 
     status = fl_iki_read(&data->buffer, &range, variable, vocabulary, content);
+
     if (F_status_is_error(status)) {
       iki_read_print_error(data->context, data->verbosity, F_status_set_fine(status), "fl_iki_read", F_true);
       return status;
@@ -524,6 +525,7 @@ extern "C" {
 
     if (data->mode == iki_read_mode_literal || data->mode == iki_read_mode_content) {
       status = iki_read_substitutions_identify(arguments, file_name, data, vocabulary, substitutionss);
+
       if (F_status_is_error(status)) {
         iki_read_print_error(data->context, data->verbosity, F_status_set_fine(status), "iki_read_substitutions_identify", F_true);
 
@@ -597,7 +599,9 @@ extern "C" {
       name_range.start = 0;
 
       while (i <= range.stop && j < variable->used) {
+
         if (i < variable->array[j].start) {
+          range.start = i;
           range.stop = variable->array[j].start - 1;
 
           f_print_string_dynamic_partial(f_type_output, data->buffer, range);