diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2021-09-04 10:43:01 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2021-09-04 10:43:01 +0200 |
commit | 0ba049daed6e4b5d01f83d236f3178747bf849cb (patch) | |
tree | 72eeedcaa5fbe9736e2842879d62d0bf412a149f /src/lib/repr | |
parent | 0b2e63791a073000b70b4463db5d8bce88ab4d23 (diff) |
Transform the letter e into eu or E
Diffstat (limited to 'src/lib/repr')
-rw-r--r-- | src/lib/repr/default.ml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/repr/default.ml b/src/lib/repr/default.ml index e8cc091..4110679 100644 --- a/src/lib/repr/default.ml +++ b/src/lib/repr/default.ml @@ -11,7 +11,8 @@ and e_opened = "E" and e_closed = "e" and schwa = "°" -and eu = "9" +and eu_opened = "9" +and eu_closed = "2" and o = "o" and o_nasal = "§" |