From a727155dc7dfeac0ac52e89c101003b9b2481a86 Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Mon, 9 Jul 2012 13:29:18 +0800 Subject: [PATCH] use divided table for full pinyin --- src/PYLibPinyin.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/PYLibPinyin.cc b/src/PYLibPinyin.cc index 621863b..44dcaf2 100644 --- a/src/PYLibPinyin.cc +++ b/src/PYLibPinyin.cc @@ -143,7 +143,8 @@ LibPinyinBackEnd::setPinyinOptions (Config *config) } } - pinyin_option_t options = config->option() | USE_RESPLIT_TABLE; + pinyin_option_t options = config->option() + | USE_RESPLIT_TABLE | USE_DIVIDED_TABLE; pinyin_set_options (m_pinyin_context, options); return TRUE; } -- 2.7.4