1
0
forked from GitHub/gf-rgl

French mixed up arguments (#180)

* Corrected  mixed up order of arguments to mkAdj'

* Revert "Corrected  mixed up order of arguments to mkAdj'"

This reverts commit eea4f791e4.

* Corrected mixed up order of arguments to mkAdj'.
This commit is contained in:
Ehrlemark
2019-02-20 12:45:12 +01:00
committed by Inari Listenmaa
parent b50a4172c3
commit 0c14c844ca

View File

@@ -393,8 +393,8 @@ oper
mkPN : N -> PN = \x -> lin PN {s = x.s ! Sg ; g = x.g} ;
} ;
mk4A a b c d = mk5A a a b c d ;
mk5A a b c d e = compADeg {s = \\_ => (mkAdj' a b c d e).s ; isPre = False ; copTyp = serCopula ; lock_A = <>} ;
mk4A masc fem mascpl aa = mk5A masc masc fem mascpl aa ;
mk5A masc masc fem mascpl aa = compADeg {s = \\_ => (mkAdj' masc masc mascpl fem aa).s ; isPre = False ; copTyp = serCopula ; lock_A = <>} ;
regA a = compADeg {s = \\_ => (mkAdjReg a).s ; isPre = False ; copTyp = serCopula ; lock_A = <>} ;
prefA a = {s = a.s ; isPre = True ; copTyp = a.copTyp ; lock_A = <>} ;
adjCopula a cop = a ** {copTyp = cop} ;