summaryrefslogtreecommitdiff
blob: 8145c2b069e030669cd00332d4fb3496d2e8db83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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);
 		}