From b1c617b61c9852f06d7cbd9fe4c9e9568a95518d Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Fri, 20 May 2022 21:09:54 -0500 Subject: [PATCH] Regression: The utf8 program is only returning space when converting file from codepoint. The non-space characters are always being defined as invalid. --- level_3/utf8/c/private-utf8_codepoint.c | 3 --- 1 file changed, 3 deletions(-) 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; - } } } -- 1.8.3.1