summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHideaki ABE <abe.sendai@gmail.com>2009-06-01 15:51:48 +0900
committerHideaki ABE <abe.sendai@gmail.com>2009-06-01 15:51:48 +0900
commit6085129ec2ad6c5b5fe72778b219245fde930423 (patch)
tree7f68c9af14a7d13db30aba41b216e4719f77e868
parenta7fbc51d64f4f0147d1a4d3f6d0a12e5afd7c969 (diff)
downloadibus-anthy-6085129ec2ad6c5b5fe72778b219245fde930423.tar.gz
Kana Table fix, U+FF0D -> U+30FC.
Sorry, this error is very bad. No match Anthy dictionaly data. No search Google.
-rw-r--r--engine/tables.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/tables.py b/engine/tables.py
index bd77920..dcccf69 100644
--- a/engine/tables.py
+++ b/engine/tables.py
@@ -21,7 +21,7 @@
# string, result, cont
romaji_typing_rule = {
- u"-" : u"-",
+ u"-" : u"ー",
u"a" : u"あ",
u"i" : u"い",
u"u" : u"う",
@@ -439,7 +439,7 @@ kana_typing_rule = {
u"?" : u"・",
u"_" : u"ろ",
- u"¥" : u"-",
+ u"¥" : u"ー",
}
kana_voiced_consonant_rule = {