From e22bb13eda39233ca92f8b2a55294acd1b23851a Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Tue, 10 Oct 2023 09:32:56 +0200 Subject: [PATCH] use SOFT_BIND in front of comma --- src/romance/PhraseRomance.gf | 2 +- src/romance/SentenceRomance.gf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/romance/PhraseRomance.gf b/src/romance/PhraseRomance.gf index 5dab82094..45c7866fd 100644 --- a/src/romance/PhraseRomance.gf +++ b/src/romance/PhraseRomance.gf @@ -26,6 +26,6 @@ incomplete concrete PhraseRomance of Phrase = PConjConj conj = {s = conj.s2} ; NoVoc = {s = []} ; - VocNP np = {s = "," ++ (np.s ! Nom).ton} ; + VocNP np = {s = SOFT_BIND ++ "," ++ (np.s ! Nom).ton} ; } diff --git a/src/romance/SentenceRomance.gf b/src/romance/SentenceRomance.gf index 9d3fa8a97..19127bd0a 100644 --- a/src/romance/SentenceRomance.gf +++ b/src/romance/SentenceRomance.gf @@ -175,12 +175,12 @@ incomplete concrete SentenceRomance of Sentence = } ; AdvS a s = {s = \\o => a.s ++ s.s ! o} ; - ExtAdvS a s = {s = \\o => a.s ++ "," ++ s.s ! o} ; + ExtAdvS a s = {s = \\o => a.s ++ SOFT_BIND ++ "," ++ s.s ! o} ; SSubjS a s b = {s = \\m => a.s ! m ++ s.s ++ b.s ! s.m} ; RelS s r = { - s = \\o => s.s ! o ++ "," ++ partQIndir ++ r.s ! Indic ! agrP3 Masc Sg + s = \\o => s.s ! o ++ SOFT_BIND ++ "," ++ partQIndir ++ r.s ! Indic ! agrP3 Masc Sg } ; }