Skip to content

Commit 904428f

Browse files
committed
don't show indefinte superlative adjectives
1 parent 8723bde commit 904428f

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

src/latvian/DocumentationLav.gf

-7
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,6 @@ lin InflectionA, InflectionA2 = \adj -> {
139139
tr (th "Loc" ++ td (adj.s ! AAdj Compar Def Masc Sg Loc) ++ td (adj.s ! AAdj Compar Def Masc Pl Loc) ++ td (adj.s ! AAdj Compar Def Fem Sg Nom) ++ td (adj.s ! AAdj Compar Def Fem Pl Nom)) ++
140140
tr (th "Voc" ++ td (adj.s ! AAdj Compar Def Masc Sg Voc) ++ td (adj.s ! AAdj Compar Def Masc Pl Voc) ++ td (adj.s ! AAdj Compar Def Fem Sg Nom) ++ td (adj.s ! AAdj Compar Def Fem Pl Nom)) ++
141141
intagAttr "th" "colspan=\"6\"" "Superlative" ++
142-
tr (intagAttr "th" "rowspan=\"6\"" "Indef" ++
143-
th "Nom" ++ td (adj.s ! AAdj Superl Indef Masc Sg Nom) ++ td (adj.s ! AAdj Superl Indef Masc Pl Nom) ++ td (adj.s ! AAdj Superl Indef Fem Sg Nom) ++ td (adj.s ! AAdj Superl Indef Fem Pl Nom)) ++
144-
tr (th "Acc" ++ td (adj.s ! AAdj Superl Indef Masc Sg Acc) ++ td (adj.s ! AAdj Superl Indef Masc Pl Acc) ++ td (adj.s ! AAdj Superl Indef Fem Sg Nom) ++ td (adj.s ! AAdj Superl Indef Fem Pl Nom)) ++
145-
tr (th "Dat" ++ td (adj.s ! AAdj Superl Indef Masc Sg Dat) ++ td (adj.s ! AAdj Superl Indef Masc Pl Dat) ++ td (adj.s ! AAdj Superl Indef Fem Sg Nom) ++ td (adj.s ! AAdj Superl Indef Fem Pl Nom)) ++
146-
tr (th "Gen" ++ td (adj.s ! AAdj Superl Indef Masc Sg Gen) ++ td (adj.s ! AAdj Superl Indef Masc Pl Gen) ++ td (adj.s ! AAdj Superl Indef Fem Sg Nom) ++ td (adj.s ! AAdj Superl Indef Fem Pl Nom)) ++
147-
tr (th "Loc" ++ td (adj.s ! AAdj Superl Indef Masc Sg Loc) ++ td (adj.s ! AAdj Superl Indef Masc Pl Loc) ++ td (adj.s ! AAdj Superl Indef Fem Sg Nom) ++ td (adj.s ! AAdj Superl Indef Fem Pl Nom)) ++
148-
tr (th "Voc" ++ td (adj.s ! AAdj Superl Indef Masc Sg Voc) ++ td (adj.s ! AAdj Superl Indef Masc Pl Voc) ++ td (adj.s ! AAdj Superl Indef Fem Sg Nom) ++ td (adj.s ! AAdj Superl Indef Fem Pl Nom)) ++
149142
tr (intagAttr "th" "rowspan=\"6\"" "Def" ++
150143
th "Nom" ++ td (adj.s ! AAdj Superl Def Masc Sg Nom) ++ td (adj.s ! AAdj Superl Def Masc Pl Nom) ++ td (adj.s ! AAdj Superl Def Fem Sg Nom) ++ td (adj.s ! AAdj Superl Def Fem Pl Nom)) ++
151144
tr (th "Acc" ++ td (adj.s ! AAdj Superl Def Masc Sg Acc) ++ td (adj.s ! AAdj Superl Def Masc Pl Acc) ++ td (adj.s ! AAdj Superl Def Fem Sg Nom) ++ td (adj.s ! AAdj Superl Def Fem Pl Nom)) ++

src/latvian/ParadigmsAdjectivesLav.gf

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ oper
3131
-- Indeclinable adjective: theoretically, any #vowel ending
3232
mkAdjective_Indecl : Str -> Adjective = \lemma -> {
3333
s = table{
34-
AAdj Superl Indef _ _ _ => NON_EXISTENT ;
34+
AAdj Superl Indef _ _ _ => nonExist ;
3535
AAdj _ _ _ _ _ => lemma ;
3636
AAdv d => mkAdjective_Adverb lemma ! d-- TODO - notestēt šādu keisu
3737
}
@@ -43,7 +43,7 @@ oper
4343
AAdj Posit d g n c => mkAdjective_Pos lemma d ! g ! n ! c ;
4444
AAdj Compar d g n c => mkAdjective_Comp lemma d ! g ! n ! c ;
4545
AAdj Superl Def g n c => mkAdjective_Sup lemma ! g ! n ! c ;
46-
AAdj Superl Indef _ _ _ => NON_EXISTENT ;
46+
AAdj Superl Indef _ _ _ => nonExist ;
4747
AAdv d => mkAdjective_Adverb lemma ! d
4848
}
4949
} ;

0 commit comments

Comments
 (0)