From fa60d3b49e93c94e140541edac812946eb27b39b Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 13 Nov 2017 20:07:55 +0100 Subject: [PATCH] Add a FIXME comment about multibytes characters support. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- lexer/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lexer/main.c b/lexer/main.c index 0cdc70b..40ff04d 100644 --- a/lexer/main.c +++ b/lexer/main.c @@ -40,6 +40,7 @@ bool istAlpha() { c == L'\''|| c == L'#' || \ c == L'0' || c == L'1' || c == L'2' || c == L'3' || c == L'4' || c == L'5' || c == L'6' || \ c == L'7' || c == L'8' || c == L'9' || \ + // FIXME: Accentued characters (aka multibytes characters) support is still buggy c == L'à' || c == L'â' || c == L'ç' || c == L'è' || c == L'é' || c == L'î' || c == L'ô' || \ c == L'ù' || c == L'û' || \ c == L'À' || c == L'Â' || c == L'Ç' || c == L'È' || c == L'É' || c == L'Î' || c == L'Ô' || \ -- 2.34.1