From 5fdb9beaab9c4ba350677450f8ca361b7ae7a9e9 Mon Sep 17 00:00:00 2001 From: krasimir Date: Mon, 5 Dec 2016 20:21:15 +0000 Subject: [PATCH] added a catch all case in regNouns in Slovenian --- lib/src/slovenian/ParadigmsSlv.gf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/src/slovenian/ParadigmsSlv.gf b/lib/src/slovenian/ParadigmsSlv.gf index 44bea2f72..bfd16650b 100644 --- a/lib/src/slovenian/ParadigmsSlv.gf +++ b/lib/src/slovenian/ParadigmsSlv.gf @@ -96,7 +96,8 @@ oper case gen of { AMasc anim => case noun of { _ + #consonant => mascAll noun noun anim ; - _ + #vowel => let nou = init noun in mascAll noun nou anim + _ + #vowel => let nou = init noun in mascAll noun nou anim ; + _ => mascAll noun noun anim -- KA: catch all }; ANeut => let nou = init noun in neutAll noun nou ; AFem => regFem noun --There are actually no feminine nouns with long stem.