diff options
author | Peng Wu <alexepico@gmail.com> | 2011-11-14 16:52:42 +0800 |
---|---|---|
committer | Peng Wu <alexepico@gmail.com> | 2011-11-14 16:52:42 +0800 |
commit | 8919f4c989c55e52ae6a18bfc4e1e4a1ed35d48b (patch) | |
tree | ba208d229788042d77bad00f39dd63ee7dda0b92 | |
parent | 9f8dc17faa2286c55cc39f39661b0e6f6cb78873 (diff) | |
download | libpinyin-8919f4c989c55e52ae6a18bfc4e1e4a1ed35d48b.tar.gz libpinyin-8919f4c989c55e52ae6a18bfc4e1e4a1ed35d48b.tar.xz libpinyin-8919f4c989c55e52ae6a18bfc4e1e4a1ed35d48b.zip |
refine pinyin custom2
-rw-r--r-- | src/storage/pinyin_custom2.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/storage/pinyin_custom2.h b/src/storage/pinyin_custom2.h index 52f093b..d0238cf 100644 --- a/src/storage/pinyin_custom2.h +++ b/src/storage/pinyin_custom2.h @@ -41,9 +41,9 @@ enum PinyinTableFlag{ * We allow these ambiguities. */ enum PinyinAmbiguity2{ - PINYIN_AMB_C_Ch = 1U << 9, - PINYIN_AMB_Z_Zh = 1U << 10, - PINYIN_AMB_S_Sh = 1U << 11, + PINYIN_AMB_C_CH = 1U << 9, + PINYIN_AMB_Z_ZH = 1U << 10, + PINYIN_AMB_S_SH = 1U << 11, PINYIN_AMB_L_N = 1U << 12, PINYIN_AMB_F_H = 1U << 13, PINYIN_AMB_L_R = 1U << 14, |