From 018a4a645de880359c8b23ff2905c8844adcd67d Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 19 Dec 2021 21:29:20 -0600 Subject: [PATCH] Bugfix: The character 'o' is not properly detected as a mode. --- level_0/f_file/c/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_0/f_file/c/file.c b/level_0/f_file/c/file.c index aad3d51..11c640d 100644 --- a/level_0/f_file/c/file.c +++ b/level_0/f_file/c/file.c @@ -893,7 +893,7 @@ extern "C" { return F_status_set_error(F_syntax); } } - else if (string[0] == f_string_ascii_u_s[0] || string[0] == f_string_ascii_g_s[0] || string[0] == f_string_ascii_i_s[0] || string[0] == f_string_ascii_a_s[0]) { + else if (string[0] == f_string_ascii_u_s[0] || string[0] == f_string_ascii_g_s[0] || string[0] == f_string_ascii_o_s[0] || string[0] == f_string_ascii_a_s[0]) { syntax = 1; } else if (string[0] == f_string_ascii_0_s[0] || string[0] == f_string_ascii_1_s[0] || string[0] == f_string_ascii_2_s[0] || string[0] == f_string_ascii_3_s[0] || string[0] == f_string_ascii_4_s[0] || string[0] == f_string_ascii_5_s[0] || string[0] == f_string_ascii_6_s[0] || string[0] == f_string_ascii_7_s[0]) { -- 1.8.3.1