diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2021-09-04 10:52:19 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2021-09-04 10:52:19 +0200 |
commit | 853e281a6719125866f8b948540944c571b091c6 (patch) | |
tree | 24b400d7b1107b4ecb8b439e8602c5058efa14cd /src/lib | |
parent | 0ba049daed6e4b5d01f83d236f3178747bf849cb (diff) |
Update
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/modifiers/mute.ml | 4 | ||||
-rw-r--r-- | src/lib/prononciation.mly | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/lib/modifiers/mute.ml b/src/lib/modifiers/mute.ml index e23965f..b89fda7 100644 --- a/src/lib/modifiers/mute.ml +++ b/src/lib/modifiers/mute.ml @@ -1,8 +1,10 @@ open StdLabels + (** Mute the last consonant if there is no voyel in the syllabus. This modifier is only applied in the first step, and not repeated anymore. -*)let process +*) +let process : 'a Sig.modifier = fun init -> let ((v, c) , ending) = init in diff --git a/src/lib/prononciation.mly b/src/lib/prononciation.mly index fdb1298..65e203c 100644 --- a/src/lib/prononciation.mly +++ b/src/lib/prononciation.mly @@ -53,7 +53,6 @@ %token EOL %nonassoc Low -%left R %right High %start<Tokens.token list> main @@ -87,6 +86,7 @@ letters | D { D :: [] } | D D { D :: [] } | F { F :: [] } + | F F { Nothing :: F :: [] } | G { G :: [] } | G I { J :: I :: [] } | G E { J :: letter_e $2 :: [] } @@ -116,6 +116,7 @@ letters | Q U { K :: [] } | R { R :: [] } + | R R { Nothing :: R :: [] } | S { SZ :: [] } | S S { Nothing :: S :: [] } | S H { X :: [] } |