From 6a9145cc9341b96b4f913a044e18c7239a959579 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 19 Apr 2018 15:46:57 +0200 Subject: [PATCH] (Dut) Choose stressed form of pronoun --- src/dutch/NounDut.gf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dutch/NounDut.gf b/src/dutch/NounDut.gf index adcfae22..c38998e8 100644 --- a/src/dutch/NounDut.gf +++ b/src/dutch/NounDut.gf @@ -20,7 +20,7 @@ concrete NounDut of Noun = CatDut ** open ResDut, Prelude in { UsePN pn = noMerge ** {s = pn.s ; a = agrP3 Sg ; isPron = False} ; UsePron pron = { - s = table {NPNom => pron.unstressed.nom ; NPAcc => pron.unstressed.acc} ; + s = table {NPNom => pron.stressed.nom ; NPAcc => pron.stressed.acc} ; a = pron.a ; isPron = True ; mergesWithPrep = pron.mergesWithPrep ; @@ -80,7 +80,7 @@ concrete NounDut of Noun = CatDut ** open ResDut, Prelude in { } ; PossPron p = noMerge ** { - s = \\_,n,g => p.unstressed.poss ; + s = \\_,n,g => p.stressed.poss ; sp = \\n,g => DefArt.s ! True ! n ! g ++ p.substposs ! n ; a = Weak } ;