forked from GitHub/gf-rgl
(Kor) Add space before negation in CompN* + fix copula forms after vowel
This commit is contained in:
@@ -184,7 +184,7 @@ oper
|
||||
"아닙니다"
|
||||
Copula ;
|
||||
|
||||
copulaAfterConsonant : Verb = copula ** {
|
||||
copulaAfterVowel : Verb = copula ** {
|
||||
s = \\vf => case vf of {
|
||||
VF Plain Pos => "다" ;
|
||||
VF Polite Pos => "예요" ;
|
||||
|
||||
@@ -119,9 +119,11 @@ lin
|
||||
CompNP = \n -> emptyComp ** {
|
||||
s = \\vf =>
|
||||
let cop = case n.p of {
|
||||
Vowel => copula.s ;
|
||||
Consonant => copulaAfterConsonant.s }
|
||||
in glue (n.s ! Bare) (cop ! vf)
|
||||
Vowel => copulaAfterVowel.s ;
|
||||
Consonant => copula.s }
|
||||
in case vf of {
|
||||
VF _ Pos => glue (n.s ! Bare) (cop ! vf) ;
|
||||
VF _ Neg => n.s ! Bare ++ cop ! vf }
|
||||
} ;
|
||||
|
||||
-- : Adv -> Comp ;
|
||||
|
||||
Reference in New Issue
Block a user