diff options
| author | herbelin | 2006-07-05 17:19:22 +0000 |
|---|---|---|
| committer | herbelin | 2006-07-05 17:19:22 +0000 |
| commit | 30f681f2800c1312813781b146baaf8008aae43e (patch) | |
| tree | 58994482ce205b81e47ff1732f06d56f7ac0cdad | |
| parent | ba8ffdeeb781df170e744a836345f21a7208aa97 (diff) | |
Correction typo + ajout Arabic Supplement
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9015 85f007b7-540e-0410-9357-904b9bb8a0f7
| -rw-r--r-- | parsing/lexer.ml4 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/parsing/lexer.ml4 b/parsing/lexer.ml4 index 8be0b540a0..3b60cf2e03 100644 --- a/parsing/lexer.ml4 +++ b/parsing/lexer.ml4 @@ -146,12 +146,14 @@ let lookup_utf8_tail c cs = (* utf-8 what do to with diacritics U0483-U0489 \ U0487 ? *) (* utf-8 Cyrillic letters U048A-U4F9 (Warning: 04CF) *) | x when 0x048A <= x & x <= 0x04F9 -> Utf8Letter n - (* utf-8 Cyrillic supplements letters U0500-U050F *) + (* utf-8 Cyrillic supplement letters U0500-U050F *) | x when 0x0500 <= x & x <= 0x050F -> Utf8Letter n (* utf-8 Hebrew letters U05D0-05EA *) | x when 0x05D0 <= x & x <= 0x05EA -> Utf8Letter n - (* utf-8 Hebrew letters U0621-064A *) + (* utf-8 Arabic letters U0621-064A *) | x when 0x0621 <= x & x <= 0x064A -> Utf8Letter n + (* utf-8 Arabic supplement letters U0750-076D *) + | x when 0x0750 <= x & x <= 0x076D -> Utf8Letter n | _ -> error_unsupported_unicode_character n cs end | 0x1000 -> |
