summaryrefslogtreecommitdiff
path: root/src/lib/lexer.mll
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2021-08-24 15:04:25 +0200
committerSébastien Dailly <sebastien@chimrod.com>2021-08-24 15:04:25 +0200
commitdf92da631e9a10a099a72ba846f90adf99d180df (patch)
treec56cffa7045795c0cc494512c28fc34a63f800bc /src/lib/lexer.mll
parent546afdcf2148087f3a90b69c23ea756550f64433 (diff)
Added pre-processing
Diffstat (limited to 'src/lib/lexer.mll')
-rw-r--r--src/lib/lexer.mll4
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 }