[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: bug(?): lua -l ...
- From: Daurnimator <quae@...>
- Date: Tue, 4 Dec 2012 18:07:56 -0500
On 4 December 2012 18:02, Andreas K. Foerster <list@akfoerster.de> wrote:
> For example:
> lua -l akfavatar.utf8
> correctly loads the module, but it defines a global name "akfavatar.utf8",
> which is not accessible, since the dot is reserved for table access...
> I think the variable should only be "utf8" then.
Not that it's a complete solution; but you can do _G["akfavatar.utf8"]
to access it.