summaryrefslogtreecommitdiff
path: root/app-i18n/skkfep/files/skkfep-annotation.patch
diff options
context:
space:
mode:
Diffstat (limited to 'app-i18n/skkfep/files/skkfep-annotation.patch')
-rw-r--r--app-i18n/skkfep/files/skkfep-annotation.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/app-i18n/skkfep/files/skkfep-annotation.patch b/app-i18n/skkfep/files/skkfep-annotation.patch
deleted file mode 100644
index 8145c2b069e0..000000000000
--- a/app-i18n/skkfep/files/skkfep-annotation.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- a/kkconv.c
-+++ b/kkconv.c
-@@ -645,6 +645,7 @@
- char c;
- {
- int l;
-+ char *p;
- DicList dlist;
-
- kanjiSelectionEffect(0);
-@@ -653,7 +654,17 @@
- if (OkuriInput)
- l += strlen(OkuriBuf);
- csrLeft(l);
-- writeShells(CurrentCand->candword);
-+ p= strrchr(CurrentCand->candword,';');
-+ if (p != NULL) {
-+ erase(l);
-+ csrLeft(l);
-+ l -= strlen(p);
-+ *p = '\0';
-+ writeShells(CurrentCand->candword);
-+ *p = ';';
-+ } else {
-+ writeShells(CurrentCand->candword);
-+ }
- if (OkuriInput) {
- writeShells(OkuriBuf);
- }