From a2d847ce2667e0d068a043494ce25ef2189d2533 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Sat, 23 Mar 2019 23:40:02 +0100 Subject: [PATCH] fix bug in compnp --- src/latin/VerbLat.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/latin/VerbLat.gf b/src/latin/VerbLat.gf index c25c85220..e3fb3c994 100644 --- a/src/latin/VerbLat.gf +++ b/src/latin/VerbLat.gf @@ -103,7 +103,7 @@ concrete VerbLat of Verb = CatLat ** open (S=StructuralLat),ResLat,IrregLat,Extr CompAP ap = ap ; -- CompNP : NP -> Comp ; -- (be) the man - CompNP np = {s = \\_ => let a = Ag np.g np.n Nom in np.preap.s ! a ++ np.s ! Nom ++ np.postap.s ! a } ; + CompNP np = {s = \\_ => let a = Ag np.g np.n Nom in np.adv ++ np.det.s ! np.g ! Nom ++ np.preap.s ! a ++ np.s ! Nom ++ np.postap.s ! a } ; -- CompAdv : Adv -> Comp ; -- (be) here CompAdv a = {s = \\_ => a.s ! Posit } ;