Sheesh... ALL matching functions fail on non-ascii characters.
This is fixed by putting 1 line in function main:
setlocale(LC_CTYPE, "")
And changing bullshit in functions.c
from
if (((*words >= 'a') && (*words <= 'z')) ||
((*words >= 'A') && (*words <= 'Z')))
to
if (isalpha(*words))
Should i start new epic branch like epic-i18n ?
--
qMax
_______________________________________________
List mailing list
[EMAIL PROTECTED]
http://epicsol.org/mailman/listinfo/list
