Coding style fixlet.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 15 Dec 2017 19:47:38 +0000 (20:47 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 15 Dec 2017 20:25:57 +0000 (21:25 +0100)
lexer/lexical_analyzer.c

index 25526054ddd436ee3f24865bb5984e336b6a52bb..56415a01a914f73c8ee3355fada66416d6f10ead 100644 (file)
@@ -22,7 +22,7 @@ static bool isAlphaNum() {
         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
+        //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'Ô' || \