summaryrefslogtreecommitdiff
path: root/src/lib/prononciation.mly
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2021-09-04 10:43:01 +0200
committerSébastien Dailly <sebastien@chimrod.com>2021-09-04 10:43:01 +0200
commit0ba049daed6e4b5d01f83d236f3178747bf849cb (patch)
tree72eeedcaa5fbe9736e2842879d62d0bf412a149f /src/lib/prononciation.mly
parent0b2e63791a073000b70b4463db5d8bce88ab4d23 (diff)
Transform the letter e into eu or E
Diffstat (limited to 'src/lib/prononciation.mly')
-rw-r--r--src/lib/prononciation.mly6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/prononciation.mly b/src/lib/prononciation.mly
index 7162b09..fdb1298 100644
--- a/src/lib/prononciation.mly
+++ b/src/lib/prononciation.mly
@@ -98,8 +98,7 @@ letters
| J { J :: [] }
| K { K :: [] }
- | E L { letter_e $1 :: L :: [] }
- | E L L { E_AGRAVE :: L :: [] }
+ | L L { Nothing :: L :: [] }
| I L { I :: L :: [] }
| I L L { I :: Y :: [] }
| L { L :: [] }
@@ -118,9 +117,10 @@ letters
| R { R :: [] }
| S { SZ :: [] }
- | S S { S :: [] }
+ | S S { Nothing :: S :: [] }
| S H { X :: [] }
| T { T :: [] }
+ | T T { Nothing :: T :: [] }
| V { V :: [] }
| W { W :: [] }