temporarily (?) removed the ?? markings from Slo and Cze smart paradigms

This commit is contained in:
Aarne Ranta
2020-04-30 11:50:10 +02:00
parent 9a45ab3889
commit 115be8c68d
2 changed files with 6 additions and 6 deletions

View File

@@ -120,7 +120,7 @@ oper
<Neutr, _ + ("a"|"ä") , _ + "iec"> => dievceniecN snom ;
<Neutr, _ + ("a"|"ä") , _ > => dievcaN snom ;
_ => dubN ("??"+snom) ** {pgen = pgen} ---- Predef.error ("cannot infer declension type for" ++ snom ++ pgen)
_ => dubN (""+snom) ** {pgen = pgen} ---- Predef.error ("cannot infer declension type for" ++ snom ++ pgen)
} ** {pgen = pgen ; g = g} ;
-- the "smartest" one-argument mkN
@@ -140,7 +140,7 @@ oper
_ + "e" => srdceN snom ;
_ + "ä" => dievcaN snom ;
_ => dubN ("??"+snom) ---- Predef.error ("cannot guess declension type for" ++ snom)
_ => dubN (""+snom) ---- Predef.error ("cannot guess declension type for" ++ snom)
} ;
@@ -497,7 +497,7 @@ adjFormsAdjective : AdjForms -> Adjective = \afs -> {
_ + "í" => cudziA s ;
_ + "i" => rydziA s ;
_ + ("ov"|"in") => otcovA s ;
_ => otcovA ("??"+s) ---- Predef.error ("no mkA for" ++ s)
_ => otcovA (""+s) ---- Predef.error ("no mkA for" ++ s)
} ;