]> Kevux Git Server - fll/commitdiff
Bugfix: FSS Basic List and FSS Extended List print comment at the start of the Content.
authorKevin Day <kevin@kevux.org>
Wed, 31 Jan 2024 05:39:26 +0000 (23:39 -0600)
committerKevin Day <kevin@kevux.org>
Wed, 31 Jan 2024 05:42:05 +0000 (23:42 -0600)
When the Content exists at the start of the Content, the comment character ('#') is printed when it should not be printed.

This is a bug where the code initializes the newline_last at the range.start.
The code logic then always expects the newline_last to represent an actual new line.
This is not necessarily the case for when newline_last is pointing to the initial range.start position.

Add a check when processing a comment to ensure that the newline_last is in fact a new line.

level_1/fl_fss/c/fss/basic_list.c
level_1/fl_fss/c/fss/extended_list.c

index aab99da8e3e45d2fecfddfbe246f2852b3f58d98..b818035f3087fb06e68e046a069affcf0c89644a 100644 (file)
@@ -232,7 +232,14 @@ extern "C" {
       }
 
       if (graph_first == 0x1 && buffer.string[range->start] == f_fss_comment_s.string[0]) {
-        start = newline_last + 1;
+
+        // The newline_last is initialized to the range->start, which may not actually be a new line.
+        if (buffer.string[newline_last] == f_string_eol_s.string[0]) {
+          start = newline_last + 1;
+        }
+        else {
+          start = newline_last;
+        }
 
         f_fss_seek_to_eol(buffer, range, state);
         if (F_status_is_error(state->status)) break;
index 755b2133ce939b2109935c6509ecd14e019b57fd..1777a8e886a68feb2b35415dd674f4bd6c18e34b 100644 (file)
@@ -187,7 +187,14 @@ extern "C" {
       }
 
       if (buffer.string[range->start] == f_fss_comment_s.string[0]) {
-        start = newline_last + 1;
+
+        // The newline_last is initialized to the range->start, which may not actually be a new line.
+        if (buffer.string[newline_last] == f_string_eol_s.string[0]) {
+          start = newline_last + 1;
+        }
+        else {
+          start = newline_last;
+        }
 
         f_fss_seek_to_eol(buffer, range, state);
         if (F_status_is_error(state->status)) break;