From 16fd4116fc916d251b449f7ac6ec84971ae8bb9b Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Tue, 19 Jun 2018 18:01:57 +0200 Subject: [PATCH] fix the linref for A2, N2 and N3 --- src/bulgarian/CatBul.gf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bulgarian/CatBul.gf b/src/bulgarian/CatBul.gf index 41ff54d6..e97317e6 100644 --- a/src/bulgarian/CatBul.gf +++ b/src/bulgarian/CatBul.gf @@ -144,7 +144,7 @@ concrete CatBul of Cat = CommonX - [IAdv,CAdv,AdV,SC] ** open ResBul, Prelude, P A2 = \a -> a.s ! ASg Masc Indef ++ a.c2; N = \n -> n.s ! NF Sg Indef; - N2 = \n -> n.s ! NF Sg Indef ++ n.c2.s; - N3 = \n -> n.s ! NF Sg Indef ++ n.c2.s ++ n.c3.s; + N2 = \n -> n.s ! NF Sg Indef ++ linrefPrep n.c2; + N3 = \n -> n.s ! NF Sg Indef ++ linrefPrep n.c2 ++ linrefPrep n.c3; }