From 7a48a09931d681f942de27e62cd7d1d07663df75 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 31 Jan 2019 16:29:40 +0100 Subject: [PATCH] (Pes) Use enclitic form of NP in predicative According to this source: https://sites.la.utexas.edu/persian_online_resources/nouns/noun-in-a-predicative-position/ --- src/persian/VerbPes.gf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/persian/VerbPes.gf b/src/persian/VerbPes.gf index 03f8048f..baf09f23 100644 --- a/src/persian/VerbPes.gf +++ b/src/persian/VerbPes.gf @@ -41,9 +41,10 @@ concrete VerbPes of Verb = CatPes ** open ResPes in { ReflVP v = insertObjPre (\\a => reflPron ! a) v ; PassV2 v = predV v ; -- need to be fixed CompAP ap ={s = \\_ => ap.s ! bEzafa} ; -- check form of adjective - CompNP np = {s = \\a => np.s ! NPC bEzafa} ; CompAdv adv = {s = \\_ => adv.s } ; CompCN cn = {s = \\a => cn.s ! bEzafa ! giveNumber a } ; + -- IL 2019-01-31 changed bEzafa to enClic according to + -- https://sites.la.utexas.edu/persian_online_resources/nouns/noun-in-a-predicative-position/ + CompNP np = {s = \\a => np.s ! NPC enClic} ; - }