1
0
forked from GitHub/gf-rgl

don't show indefinte superlative adjectives

This commit is contained in:
Krasimir Angelov
2025-02-05 10:53:56 +01:00
parent 8723bde58e
commit 904428fb36
2 changed files with 2 additions and 9 deletions
+2 -2
View File
@@ -31,7 +31,7 @@ oper
-- Indeclinable adjective: theoretically, any #vowel ending
mkAdjective_Indecl : Str -> Adjective = \lemma -> {
s = table{
AAdj Superl Indef _ _ _ => NON_EXISTENT ;
AAdj Superl Indef _ _ _ => nonExist ;
AAdj _ _ _ _ _ => lemma ;
AAdv d => mkAdjective_Adverb lemma ! d-- TODO - notestēt šādu keisu
}
@@ -43,7 +43,7 @@ oper
AAdj Posit d g n c => mkAdjective_Pos lemma d ! g ! n ! c ;
AAdj Compar d g n c => mkAdjective_Comp lemma d ! g ! n ! c ;
AAdj Superl Def g n c => mkAdjective_Sup lemma ! g ! n ! c ;
AAdj Superl Indef _ _ _ => NON_EXISTENT ;
AAdj Superl Indef _ _ _ => nonExist ;
AAdv d => mkAdjective_Adverb lemma ! d
}
} ;