]> Kevux Git Server - fll/commitdiff
Cleanup: Fix dead code.
authorKevin Day <Kevin@kevux.org>
Thu, 5 Sep 2024 02:43:03 +0000 (21:43 -0500)
committerKevin Day <Kevin@kevux.org>
Thu, 5 Sep 2024 02:43:03 +0000 (21:43 -0500)
The graph condition is always `0x1` when entering the block but inside it checks for `0x2`.
Update the function to accept either `0x1` or `0x2`.

level_1/fl_fss/c/fss/embedded_list.c

index bcf90d01338274a53564b59d308a138f2e7c92f1..48c7293af49ce7370e8339606687d3ba97fbe344 100644 (file)
@@ -593,7 +593,7 @@ extern "C" {
           }
         }
       }
-      else if (graph_first == 0x1 && buffer.string[range->start] == f_fss_comment_s.string[0]) {
+      else if (buffer.string[range->start] == f_fss_comment_s.string[0] && (graph_first == 0x1 || graph_first == 0x2)) {
 
         // The newline_last is initialized to the range->start, which may not actually be a new line.
         position = (buffer.string[newline_last] == f_string_eol_s.string[0]) ? newline_last + 1 : newline_last;