[uim-commit] r809 - trunk/uim
ekato at freedesktop.org
ekato at freedesktop.org
Wed Mar 23 04:01:11 PST 2005
Author: ekato
Date: 2005-03-23 04:01:07 -0800 (Wed, 23 Mar 2005)
New Revision: 809
Modified:
trunk/uim/skk-dic.c
Log:
* uim/skk-dic.c (parse_dic_line) : Use of islnum() is more
appropriate here (e.g. 4.3bsd in SKK-JISYO.L).
Modified: trunk/uim/skk-dic.c
===================================================================
--- trunk/uim/skk-dic.c 2005-03-23 11:29:13 UTC (rev 808)
+++ trunk/uim/skk-dic.c 2005-03-23 12:01:07 UTC (rev 809)
@@ -1705,7 +1705,7 @@
return ;
}
*sep = '\0';
- if (!isalpha((unsigned char)buf[0]) && islower((unsigned char)sep[-1])) { /* okuri-ari entry */
+ if (!isalnum((unsigned char)buf[0]) && islower((unsigned char)sep[-1])) { /* okuri-ari entry */
char okuri_head = sep[-1];
sep[-1] = 0;
sl = compose_line(di, buf, okuri_head, line);
More information about the Uim-commit
mailing list