constants for Chi negation words to support Pinyin

This commit is contained in:
aarne
2015-07-19 09:40:59 +00:00
parent 05be967ec4
commit 49a8824755
2 changed files with 4 additions and 4 deletions

View File

@@ -14,8 +14,8 @@ concrete QuestionChi of Question = CatChi **
v = cl.vp.verb ;
verb = case a of {
APlain => v.s ++ v.neg ++ v.sn ;
APerf => v.s ++ "不" ++ v.sn ++ v.pp ;
ADurStat => v.s ++ "不" ++ v.sn ;
APerf => v.s ++ neg_s ++ v.sn ++ v.pp ;
ADurStat => v.s ++ neg_s ++ v.sn ;
ADurProg => v.dp ++ v.neg ++ v.dp ++ v.sn ; -- mei or bu
AExper => v.s ++ v.neg ++ v.sn ++ v.ep
}