diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2021-08-24 15:04:25 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2021-08-24 15:04:25 +0200 |
commit | df92da631e9a10a099a72ba846f90adf99d180df (patch) | |
tree | c56cffa7045795c0cc494512c28fc34a63f800bc /src/lib/lexer.mll | |
parent | 546afdcf2148087f3a90b69c23ea756550f64433 (diff) |
Added pre-processing
Diffstat (limited to 'src/lib/lexer.mll')
-rw-r--r-- | src/lib/lexer.mll | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/lexer.mll b/src/lib/lexer.mll index 236e353..f8a7f2c 100644 --- a/src/lib/lexer.mll +++ b/src/lib/lexer.mll @@ -17,7 +17,6 @@ rule letter = parse | '\xC3' '\xA9' { E_ACUTE } | 'f' { F } | 'g' { G } -| "gu" { G } | 'h' { H } | 'i' { I } | 'j' { J } @@ -29,13 +28,10 @@ rule letter = parse | "nn" { N } | 'o' { O } | 'p' { P } -| "ph" { F } | 'q' { Q } -| "qu" { K } | 'r' { R } | 'u' { U } | 's' { S } -| "ss" { SS } | 't' { T } | 'u' { U } | 'v' { V } |