projects
/
m17n
/
m17n-contrib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
61233b5
)
Handle language "other".
author
handa
<handa>
Wed, 22 Oct 2008 00:40:32 +0000
(
00:40
+0000)
committer
handa
<handa>
Wed, 22 Oct 2008 00:40:32 +0000
(
00:40
+0000)
tbl2mim.awk
patch
|
blob
|
history
diff --git
a/tbl2mim.awk
b/tbl2mim.awk
index
fa5d6ea
..
620e91e
100644
(file)
--- a/
tbl2mim.awk
+++ b/
tbl2mim.awk
@@
-27,7
+27,11
@@
BEGIN {
/^ICON *=/ { ICON = " \""$3"\""; next; }
/^NAME *=/ { NAME = tolower($3); next; }
-/^LANGUAGES *=/ { LANG = $3; next; }
+/^LANGUAGES *=/ {
+ LANG = $3;
+ if (LANG == "other")
+ LANG = "t";
+ next; }
/^STATUS_PROMPT *=/ { TITLE = $3; next; }
/^BEGIN_TABLE/ {
printf "(input-method %s %s)\n", LANG, NAME;