From 12ea512bdf63787aa327467907f5720870265e44 Mon Sep 17 00:00:00 2001 From: bringert Date: Tue, 12 Aug 2008 15:15:06 +0000 Subject: [PATCH] Use the .s field of .c2 fields in ExtraScand instead of plain .c2 to get it to compile. --- lib/resource/scandinavian/ExtraScand.gf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/resource/scandinavian/ExtraScand.gf b/lib/resource/scandinavian/ExtraScand.gf index 15bd59c56..3438a0d3b 100644 --- a/lib/resource/scandinavian/ExtraScand.gf +++ b/lib/resource/scandinavian/ExtraScand.gf @@ -10,12 +10,12 @@ incomplete concrete ExtraScand of ExtraScandAbs = CatScand ** StrandRelSlash rp slash = { s = \\t,a,p,ag => - rp.s ! ag.gn ! RNom ++ slash.s ! t ! a ! p ! Sub ++ slash.c2 ; + rp.s ! ag.gn ! RNom ++ slash.s ! t ! a ! p ! Sub ++ slash.c2.s ; c = NPAcc } ; EmptyRelSlash rp slash = { s = \\t,a,p,ag => - slash.s ! t ! a ! p ! Sub ++ slash.c2 ; + slash.s ! t ! a ! p ! Sub ++ slash.c2.s ; c = NPAcc } ; @@ -25,8 +25,8 @@ incomplete concrete ExtraScand of ExtraScandAbs = CatScand ** cls = slash.s ! t ! a ! p ; who = ip.s ! accusative in table { - QDir => who ++ cls ! Inv ++ slash.c2 ; - QIndir => who ++ cls ! Sub ++ slash.c2 + QDir => who ++ cls ! Inv ++ slash.c2.s ; + QIndir => who ++ cls ! Sub ++ slash.c2.s } } ; @@ -42,6 +42,6 @@ incomplete concrete ExtraScand of ExtraScandAbs = CatScand ** s = \\v,a => infVP vp a ---- no sup } ; ConjVPI = conjunctDistrTable2 VPIForm Agr ; - ComplVPIVV vv vpi = insertObj (\\a => vv.c2 ++ vpi.s ! VPIInf ! a) (predV vv) ; + ComplVPIVV vv vpi = insertObj (\\a => vv.c2.s ++ vpi.s ! VPIInf ! a) (predV vv) ; }