(Pes) Make poss.suff. attach to the head for N2,N3

This commit is contained in:
Inari Listenmaa
2019-02-22 11:16:49 +01:00
parent d175b1eedf
commit c25a236585
5 changed files with 34 additions and 27 deletions
+2 -2
View File
@@ -265,9 +265,9 @@ oper
mkN2 = overload {
mkN2 : N -> Str -> N2
= \n,c -> lin N2 (n ** {c = c}) ;
= \n,c -> lin N2 (n ** {c = c ; compl=[]}) ;
mkN2 : N -> Prep -> Str -> N2 -- hidden from puclic API
= \n,p,c -> lin N2 (n ** {c = p.s ; c2 = c}) -- there is no c2
= \n,p,c -> lin N2 (n ** {c = p.s ; c2 = c; compl=[]}) -- there is no c2
} ;
mkN3 = overload {