lua-users home
lua-l archive

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


On Tue, Jun 3, 2014 at 12:17 AM, steve donovan
<steve.j.donovan@gmail.com> wrote:

> any criticism welcome.

local dummy = function () end

local compatibility, for, only = dummy, dummy, dummy

SW.seek, SW.close, SR.close = for, compatibility, only

I also don't like libraries creating locals for performance or
convenience reasons.  In the future it may be an objective to be able
to redefine something like table.concat() elsewhere -- but to each
their own. :o)