mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-06 01:32:50 -06:00
use SOFT_BIND to glue the hyphen in the comparative and superlative forms of the Bulgarian adjectives
This commit is contained in:
@@ -9,13 +9,13 @@ concrete AdjectiveBul of Adjective = CatBul ** open ResBul, Prelude in {
|
||||
} ;
|
||||
|
||||
ComparA a np = {
|
||||
s = \\aform => "ïî" ++ "-" ++ a.s ! aform ++ "îò" ++ np.s ! RObj Acc ;
|
||||
adv = "ïî" ++ "-" ++ a.adv ++ "îò" ++ np.s ! RObj Acc ;
|
||||
s = \\aform => "ïî" ++ hyphen ++ a.s ! aform ++ "îò" ++ np.s ! RObj Acc ;
|
||||
adv = "ïî" ++ hyphen ++ a.adv ++ "îò" ++ np.s ! RObj Acc ;
|
||||
isPre = True
|
||||
} ;
|
||||
UseComparA a = {
|
||||
s = \\aform => "ïî" ++ "-" ++ a.s ! aform ;
|
||||
adv = "ïî" ++ "-" ++ a.adv ;
|
||||
s = \\aform => "ïî" ++ hyphen ++ a.s ! aform ;
|
||||
adv = "ïî" ++ hyphen ++ a.adv ;
|
||||
isPre = True
|
||||
} ;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user