From a9b5848a5f65f78e0f5f4e6f09e9c12ef9d01513 Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Sat, 4 Nov 2023 19:01:19 +0100 Subject: [PATCH] Conjunction with and_Conj should always be in plural --- src/russian/ConjunctionRus.gf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/russian/ConjunctionRus.gf b/src/russian/ConjunctionRus.gf index e934b95a..0084d82f 100644 --- a/src/russian/ConjunctionRus.gf +++ b/src/russian/ConjunctionRus.gf @@ -169,8 +169,10 @@ concrete ConjunctionRus of Conjunction = -- : Conj -> ListNP -> NP ; -- she or we ConjNP conj xs = { s = \\c => conj.s1 ++ xs.s1 ! c ++ conj.s2 ++ xs.s2 ! c ; - --prep = \\c => conj.s1 ++ xs.prep1 ! c ++ conj.s2 ++ xs.prep2 ! c ; - a = xs.a ; -- TODO: dep. on conj as well? + a = case conj.n of { + Sg => xs.a ; + Pl => case xs.a of {Ag gn p => Ag GPl p} + } ; pron = xs.pron ; anim = xs.anim } ;