From 88d7adfa85ffc65215617a4066c6e7b156af3170 Mon Sep 17 00:00:00 2001 From: aarne Date: Wed, 20 Feb 2013 19:34:20 +0000 Subject: [PATCH] fixed details of Romance clitics for reflexives, imperatives, infinitives. A change in the type of VP.clit3 was needed. --- examples/phrasebook/Sentences.gf | 2 +- examples/phrasebook/SentencesI.gf | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/phrasebook/Sentences.gf b/examples/phrasebook/Sentences.gf index 8dbd8483e..da15031db 100644 --- a/examples/phrasebook/Sentences.gf +++ b/examples/phrasebook/Sentences.gf @@ -196,7 +196,7 @@ abstract Sentences = Numeral ** { -- lexical items given in the resource Lexicon VPlay, VRun, VSit, VSleep, VSwim, VWalk : VerbPhrase ; - VDrink, VEat, VRead, VWait, VWrite : VerbPhrase ; + VDrink, VEat, VRead, VWait, VWrite, VSit, VStop : VerbPhrase ; V2Buy, V2Drink, V2Eat : Object -> VerbPhrase ; V2Wait : Person -> VerbPhrase ; diff --git a/examples/phrasebook/SentencesI.gf b/examples/phrasebook/SentencesI.gf index d2df39ca9..f41b069ab 100644 --- a/examples/phrasebook/SentencesI.gf +++ b/examples/phrasebook/SentencesI.gf @@ -268,6 +268,8 @@ oper VSleep = mkVP sleep_V ; VSwim = mkVP swim_V ; VWalk = mkVP walk_V ; + VSit = mkVP sit_V ; + VStop = mkVP stop_V ; VDrink = mkVP ; VEat = mkVP ; VRead = mkVP ;