fixed progressives and vocative commas in Chi

This commit is contained in:
aarne
2013-10-10 17:56:05 +00:00
parent fe44835820
commit 812b22f7c3
2 changed files with 8 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
concrete PhraseChi of Phrase = CatChi ** open Prelude, ResChi in {
lin
PhrUtt pconj utt voc = {s = pconj.s ++ voc.s ++ chcomma ++ utt.s} ;
PhrUtt pconj utt voc = {s = pconj.s ++ voc.s ++ utt.s} ;
UttS s = s ;
UttQS qs = qs ;
@@ -23,6 +23,6 @@ concrete PhraseChi of Phrase = CatChi ** open Prelude, ResChi in {
PConjConj conj = ss (conj.s ! CSent).s2 ;
NoVoc = {s = []} ;
VocNP np = {s = np.s} ; ---- ??
VocNP np = {s = np.s ++ chcomma} ; ---- ??
}