From 39641675ecda9f9e39a9b8073dc03c74eb435234 Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Fri, 24 Apr 2015 14:00:55 +0800 Subject: fixes a typo --- src/storage/pinyin_parser2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/storage/pinyin_parser2.cpp b/src/storage/pinyin_parser2.cpp index 801531d..51f3ae8 100644 --- a/src/storage/pinyin_parser2.cpp +++ b/src/storage/pinyin_parser2.cpp @@ -36,7 +36,7 @@ using namespace zhuyin; -#define PINYIN_SUPPORT_QUOTATION 0 +#define FULL_PINYIN_SUPPORT_QUOTATION 0 static bool check_pinyin_options(pinyin_option_t options, const pinyin_index_item_t * item) { @@ -322,7 +322,7 @@ int FullPinyinParser2::parse (pinyin_option_t options, ChewingKeyVector & keys, for (i = 0; i < len; ++i) { -#if PINYIN_SUPPORT_QUOTATION +#if FULL_PINYIN_SUPPORT_QUOTATION if (input[i] == '\'') { curstep = &g_array_index(m_parse_steps, parse_value_t, i); nextstep = &g_array_index(m_parse_steps, parse_value_t, i + 1); -- cgit