From: Kevin Day Date: Mon, 20 Dec 2021 03:29:20 +0000 (-0600) Subject: Bugfix: The character 'o' is not properly detected as a mode. X-Git-Tag: 0.5.7~17 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=018a4a645de880359c8b23ff2905c8844adcd67d;p=fll Bugfix: The character 'o' is not properly detected as a mode. --- 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]) {