From: Kevin Day Date: Sat, 21 May 2022 02:09:54 +0000 (-0500) Subject: Regression: The utf8 program is only returning space when converting file from codepoint. X-Git-Tag: 0.5.10~111 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=b1c617b61c9852f06d7cbd9fe4c9e9568a95518d;p=fll Regression: The utf8 program is only returning space when converting file from codepoint. The non-space characters are always being defined as invalid. --- diff --git a/level_3/utf8/c/private-utf8_codepoint.c b/level_3/utf8/c/private-utf8_codepoint.c index 15579d6..316c4eb 100644 --- a/level_3/utf8/c/private-utf8_codepoint.c +++ b/level_3/utf8/c/private-utf8_codepoint.c @@ -144,9 +144,6 @@ extern "C" { if (status == F_true) { status = F_space; } - else { - status = F_valid_not; - } } }