1
0
forked from GitHub/gf-core

some adjective fixes in FoodsGle

This commit is contained in:
aarne
2011-08-22 14:43:58 +00:00
parent 7b4663067e
commit 36b9d55ed6

View File

@@ -36,8 +36,8 @@ concrete FoodsGle of Foods = open MutationsGle, CharactersGle in {
s = table{Sg => (mutate sg); Pl => (mutate pl)};
g = g;
pe = case pl of {
_ + v@(#broadVowel) + c@(#consonant*) => Broad;
_ + v@(#slenderVowel) + c@(#consonant*) => Slender;
_ + v@(#broadVowel) + c@(#consonant*) + #consonant => Broad;
_ + v@(#slenderVowel) + c@(#consonant*) + #consonant => Slender;
_ => NoBreadth
}
} ;