Skip to content

Commit e805ee0

Browse files
committed
add compatibleJamo option to C & Java API
1 parent 186bb57 commit e805ee0

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Diff for: bindings/java/kr/pe/bab2min/Kiwi.java

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ public static class Match {
3030
joinAdvSuffix = 1 << 21,
3131
splitComplex = 1 << 22,
3232
zCoda = 1 << 23,
33+
compatibleJamo = 1 << 24,
3334
joinVSuffix = joinVerbSuffix | joinAdjSuffix,
3435
joinAffix = joinNounPrefix | joinNounSuffix | joinVerbSuffix | joinAdjSuffix | joinAdvSuffix,
3536
all = url | email | hashtag | mention | serial | zCoda,

Diff for: include/kiwi/capi.h

+1
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ enum
135135
KIWI_MATCH_JOIN_AFFIX = KIWI_MATCH_JOIN_NOUN_PREFIX | KIWI_MATCH_JOIN_NOUN_SUFFIX | KIWI_MATCH_JOIN_V_SUFFIX | KIWI_MATCH_JOIN_ADV_SUFFIX,
136136
KIWI_MATCH_SPLIT_COMPLEX = 1 << 22,
137137
KIWI_MATCH_Z_CODA = 1 << 23,
138+
KIWI_MATCH_COMPATIBLE_JAMO = 1 << 24,
138139

139140
KIWI_MATCH_ALL = KIWI_MATCH_URL | KIWI_MATCH_EMAIL | KIWI_MATCH_HASHTAG | KIWI_MATCH_MENTION | KIWI_MATCH_Z_CODA,
140141
KIWI_MATCH_ALL_WITH_NORMALIZING = KIWI_MATCH_ALL | KIWI_MATCH_NORMALIZE_CODA,

0 commit comments

Comments
 (0)