[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: accented characters in field names (once more)
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Sat, 25 Nov 2006 10:24:27 -0200
> $ export LUA_INIT='os.setlocale(os.getenv("LC_CTYPE"), "ctype")'
I guess you'd have to support LC_ALL as well:
os.setlocale(os.getenv("LC_CTYPE") or os.getenv("LC_ALL"), "ctype")
--lhf