From 7e28253054e6a697c844eb445879eb16cd39066b Mon Sep 17 00:00:00 2001 From: aarne Date: Fri, 2 Dec 2011 15:44:18 +0000 Subject: [PATCH] the place of negation in Dut and Ger imperatives corrected --- src/dutch/SentenceDut.gf | 2 +- src/german/SentenceGer.gf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dutch/SentenceDut.gf b/src/dutch/SentenceDut.gf index c5fa68d2f..eeff08e5d 100644 --- a/src/dutch/SentenceDut.gf +++ b/src/dutch/SentenceDut.gf @@ -21,7 +21,7 @@ concrete SentenceDut of Sentence = CatDut ** open ResDut, Prelude in { inf = vp.inf.p1 ; in verb ++ ps.p2 ++ - vp.n2 ! agr ++ vp.a1 ! pol ++ vp.a2 ++ inf ++ vp.ext + vp.a1 ! pol ++ vp.n2 ! agr ++ vp.a2 ++ inf ++ vp.ext } ; SlashVP np vp = diff --git a/src/german/SentenceGer.gf b/src/german/SentenceGer.gf index 935ba416a..5d9517162 100644 --- a/src/german/SentenceGer.gf +++ b/src/german/SentenceGer.gf @@ -20,7 +20,7 @@ concrete SentenceGer of Sentence = CatGer ** open ResGer, Prelude in { inf = vp.inf ++ verb.inf ; in verb.fin ++ ps.p2 ++ - vp.n0 ! agr ++ vp.n2 ! agr ++ vp.a1 ! pol ++ vp.a2 ++ inf ++ vp.ext + vp.n0 ! agr ++ vp.a1 ! pol ++ vp.n2 ! agr ++ vp.a2 ++ inf ++ vp.ext } ; SlashVP np vp =