From b8b1f01d9115418c3b9a2f316465336e0f4ab6fb Mon Sep 17 00:00:00 2001 From: aarne Date: Tue, 5 Jan 2010 14:19:27 +0000 Subject: [PATCH] that_Subj in Italian --- examples/attempto/LexAttemptoFre.gf | 3 ++- examples/attempto/LexAttemptoIta.gf | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/attempto/LexAttemptoFre.gf b/examples/attempto/LexAttemptoFre.gf index b53017388..e7ce15ba3 100644 --- a/examples/attempto/LexAttemptoFre.gf +++ b/examples/attempto/LexAttemptoFre.gf @@ -27,6 +27,7 @@ oper eachOf np = mkNP (mkPredet "chacun" "chacune" genitive P.True) np ; - adj_thatCl : A -> S -> Cl = \a,s -> mkCl (mkVP (mkAP (mkAP a) s)) ; + adj_thatCl : A -> S -> Cl = \a,s -> + mkCl (mkVP (mkVP (mkAP a)) (SyntaxFre.mkAdv that_Subj s)) ; } diff --git a/examples/attempto/LexAttemptoIta.gf b/examples/attempto/LexAttemptoIta.gf index 191d303ab..09d71999f 100644 --- a/examples/attempto/LexAttemptoIta.gf +++ b/examples/attempto/LexAttemptoIta.gf @@ -27,6 +27,7 @@ oper eachOf np = mkNP (mkPredet "ciascuno" "ciascuna" genitive P.True) np ; - adj_thatCl : A -> S -> Cl = \a,s -> mkCl (mkVP (mkAP (mkAP a) s)) ; + adj_thatCl : A -> S -> Cl = \a,s -> + mkCl (mkVP (mkVP (mkAP a)) (SyntaxIta.mkAdv that_Subj s)) ; }