lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> $ 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