Codebase list mozc / debian/1.1.758.102-1
Add patches/fix_scim-mozc_cannot_type_char.patch This fix scim-mozc cannot type char. issue 88:scim-mozc cannot type "ぃ" in Kana input method http://code.google.com/p/mozc/issues/detail?id=88 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@debian.org> Nobuhiro Iwamatsu 12 years ago
3 changed file(s) with 23 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
55 Support build with libzinnia.
66 * Update debian/rules.
77 Add path of build directory.
8 * Add patches/fix_scim-mozc_cannot_type_char.patch.
9 This fix scim-mozc cannot type char.
10 issue 88:scim-mozc cannot type "ぃ" in Kana input method
11 http://code.google.com/p/mozc/issues/detail?id=88
812
9 -- Nobuhiro Iwamatsu <iwamatsu@debian.org> Wed, 06 Jul 2011 23:01:42 +0900
13 -- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 12 Jul 2011 01:24:48 +0900
1014
1115 mozc (1.1.717.102-1) unstable; urgency=low
1216
0 # Issue 88: scim-mozc cannot type "ぃ" in Kana input method
1 # Origin: upstream, http://code.google.com/p/mozc/issues/detail?id=88
2 # Bug: http://code.google.com/p/mozc/issues/detail?id=88
3 # Bug-Debian: None
4 diff --git a/unix/scim/scim_key_translator.cc b/unix/scim/scim_key_translator.cc
5 index 5ee6ca4..b1b195a 100755
6 --- a/unix/scim/scim_key_translator.cc
7 +++ b/unix/scim/scim_key_translator.cc
8 @@ -179,7 +179,7 @@ const struct KanaMap {
9 { 'w' , "\xe3\x81\xa6" }, // "て"
10 { 'W' , "\xe3\x81\xa6" }, // "て"
11 { 'e' , "\xe3\x81\x84" }, // "い"
12 - { 'E' , "\xe3\x81\x84" }, // "い"
13 + { 'E' , "\xe3\x81\x83" }, // "ぃ"
14 { 'r' , "\xe3\x81\x99" }, // "す"
15 { 'R' , "\xe3\x81\x99" }, // "す"
16 { 't' , "\xe3\x81\x8b" }, // "か"
22 add_file_to_gypfile_check.patch
33 add_tegaki_ui_scim_mozc.patch
44 add_tegaki_ui_ibus_mozc.patch
5 fix_scim-mozc_cannot_type_char.patch