Skip to content

Commit

Permalink
use SOFT_BIND in front of comma
Browse files Browse the repository at this point in the history
  • Loading branch information
krangelov committed Oct 10, 2023
1 parent ca7d7d8 commit e22bb13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/romance/PhraseRomance.gf
Original file line number Diff line number Diff line change
Expand Up @@ -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} ;

}
4 changes: 2 additions & 2 deletions src/romance/SentenceRomance.gf
Original file line number Diff line number Diff line change
Expand Up @@ -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
} ;

}

0 comments on commit e22bb13

Please sign in to comment.