projects
/
m17n
/
m17n-lib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d5fa728
)
(main): Adjusted for the change of symbol's language
author
handa
<handa>
Thu, 18 Aug 2005 01:20:55 +0000
(
01:20
+0000)
committer
handa
<handa>
Thu, 18 Aug 2005 01:20:55 +0000
(
01:20
+0000)
property (now in lowercase).
example/medit.c
patch
|
blob
|
history
diff --git
a/example/medit.c
b/example/medit.c
index
5d326ee
..
63701ca
100644
(file)
--- a/
example/medit.c
+++ b/
example/medit.c
@@
-2958,9
+2958,9
@@
main (int argc, char **argv)
char *name = msymbol_name (fullname);
char c = name[0];
- if (c >= 'A' && c <= 'Z')
+ if (c >= 'a' && c <= 'z')
{
- int idx = (c < 'U') ? (c - 'A') / 2 : 10;
+ int idx = (c < 'u') ? (c - 'a') / 2 : 10;
pl = plist[idx];
if (! pl)