diff options
-rw-r--r-- | app-i18n/skkfep/files/skkfep-annotation.patch | 29 | ||||
-rw-r--r-- | app-i18n/skkfep/skkfep-0.87-r1.ebuild | 1 |
2 files changed, 30 insertions, 0 deletions
diff --git a/app-i18n/skkfep/files/skkfep-annotation.patch b/app-i18n/skkfep/files/skkfep-annotation.patch new file mode 100644 index 000000000000..8145c2b069e0 --- /dev/null +++ b/app-i18n/skkfep/files/skkfep-annotation.patch @@ -0,0 +1,29 @@ +--- 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); + } diff --git a/app-i18n/skkfep/skkfep-0.87-r1.ebuild b/app-i18n/skkfep/skkfep-0.87-r1.ebuild index a3e53f72d619..a74c53e6af37 100644 --- a/app-i18n/skkfep/skkfep-0.87-r1.ebuild +++ b/app-i18n/skkfep/skkfep-0.87-r1.ebuild @@ -23,6 +23,7 @@ RDEPEND="sys-libs/ncurses:= PATCHES=( "${FILESDIR}"/${PN}-gentoo.patch "${FILESDIR}"/${PN}-system-dic.patch + "${FILESDIR}"/${PN}-annotation.patch ) DOCS=( README HISTORY TODO ) |