diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2021-08-27 17:20:59 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2021-08-27 17:20:59 +0200 |
commit | 26faec7a69051f639b50c8e8741f0823c6be52a2 (patch) | |
tree | a610d0306bf3e0c84f7993be7c290965fcab1900 /src/lib/lexer.mll | |
parent | c8b49eed4cf92e7d2dd01dce779ef84ccae733eb (diff) |
Managed diphtongues
Diffstat (limited to 'src/lib/lexer.mll')
-rw-r--r-- | src/lib/lexer.mll | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/lexer.mll b/src/lib/lexer.mll index f8a7f2c..07305d8 100644 --- a/src/lib/lexer.mll +++ b/src/lib/lexer.mll @@ -13,6 +13,8 @@ rule letter = parse | 'c' { C } | 'd' { D } | 'e' { E } +| '\232' { E_ACUTE } +| '\xC3' '\xA8' { E_AGRAVE } | '\233' { E_ACUTE } | '\xC3' '\xA9' { E_ACUTE } | 'f' { F } |