diff options
author | 2010-12-09 19:21:51 +0900 | |
---|---|---|
committer | 2010-12-09 21:41:26 +0900 | |
commit | aee09dc5fadba630bbbca137cafb4871fb823099 (patch) | |
tree | c2bbb88b9514ba64b71def7d19809dba1f9cb03f /native/src/defines.h | |
parent | 8ec36be4f5d7f85a658235ccfeb9c6cb424ddb2a (diff) | |
download | latinime-aee09dc5fadba630bbbca137cafb4871fb823099.tar.gz latinime-aee09dc5fadba630bbbca137cafb4871fb823099.tar.xz latinime-aee09dc5fadba630bbbca137cafb4871fb823099.zip |
Fix a bug that We can't suggest words with missing space if one of the words starts with a capitalized character.
Bug: 3268825
Change-Id: I0634a243ad1e45dd096b30824b463c366a2e7f0f
Diffstat (limited to 'native/src/defines.h')
-rw-r--r-- | native/src/defines.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/native/src/defines.h b/native/src/defines.h index b459ba744..98e93b93d 100644 --- a/native/src/defines.h +++ b/native/src/defines.h @@ -25,10 +25,12 @@ #endif #define DEBUG_DICT true #define DEBUG_SHOW_FOUND_WORD false +#define DEBUG_NODE true #else // FLAG_DBG #define LOGI #define DEBUG_DICT false #define DEBUG_SHOW_FOUND_WORD false +#define DEBUG_NODE false #endif // FLAG_DBG #ifndef U_SHORT_MAX |