Add a FIXME comment about multibytes characters support.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 13 Nov 2017 19:07:55 +0000 (20:07 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 13 Nov 2017 19:07:55 +0000 (20:07 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
lexer/main.c

index 0cdc70b9da3f066fa591869584e4a0fae7af8cd6..40ff04d540f95c4b7e6fa16b984d8e188997af6d 100644 (file)
@@ -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'Ô' || \