diff options
author | Mamoru Komachi <usata@gentoo.org> | 2003-10-07 16:19:43 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2003-10-07 16:19:43 +0000 |
commit | 4aea53779a283d11d3354c05f78a5e00593c5923 (patch) | |
tree | 2bfaba9a8236e225f9f00e7a3f9748a424cc07e1 /app-i18n/skkinput/files | |
parent | cleaned up make.defaults, added strict to FEATURES (since we are hardened, we... (diff) | |
download | gentoo-2-4aea53779a283d11d3354c05f78a5e00593c5923.tar.gz gentoo-2-4aea53779a283d11d3354c05f78a5e00593c5923.tar.bz2 gentoo-2-4aea53779a283d11d3354c05f78a5e00593c5923.zip |
Fixed Ctrl+Space problem when NumLock is on. Removed redundant version
Diffstat (limited to 'app-i18n/skkinput/files')
-rw-r--r-- | app-i18n/skkinput/files/digest-skkinput-2.06.3 | 1 | ||||
-rw-r--r-- | app-i18n/skkinput/files/skkinput-ignore-numlock.patch | 13 |
2 files changed, 13 insertions, 1 deletions
diff --git a/app-i18n/skkinput/files/digest-skkinput-2.06.3 b/app-i18n/skkinput/files/digest-skkinput-2.06.3 deleted file mode 100644 index 75a8fcd926d4..000000000000 --- a/app-i18n/skkinput/files/digest-skkinput-2.06.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 ded482a51cabad6e76becebadac6f367 skkinput-2.06.3.tar.gz 417098 diff --git a/app-i18n/skkinput/files/skkinput-ignore-numlock.patch b/app-i18n/skkinput/files/skkinput-ignore-numlock.patch new file mode 100644 index 000000000000..a33d83ab6d3b --- /dev/null +++ b/app-i18n/skkinput/files/skkinput-ignore-numlock.patch @@ -0,0 +1,13 @@ +diff -urN skkinput-2.06.3.ORIG/cstyle.c skkinput-2.06.3/cstyle.c +--- skkinput-2.06.3.ORIG/cstyle.c 2002-06-29 13:48:46.000000000 +0900 ++++ skkinput-2.06.3/cstyle.c 2003-10-08 01:02:26.000000000 +0900 +@@ -175,8 +175,7 @@ + break ; + } + } else { +- if( chara == 0x20 && ( xkev->state & ShiftMask ) && +- !( xkev->state & ( ~ShiftMask ) ) ){ ++ if( chara == 0x20 && ( xkev->state & ShiftMask )){ + chara = CHARA_SHIFT_SPACE ; + } + } |