[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: upcoming changes in Lua 5.2 [was Re: Location of a package]
- From: Mark Hamburg <mhamburg@...>
- Date: Mon, 25 Feb 2008 08:20:24 -0800
FYI, I've just been converting some tracking loop code to do the following:
repeat
local event = getNextMouseEvent()
local done = event.what == "mouseUp"
-- do the tracking work
until done
So, obviously I would then be burned by a change that switched the scope of
the conditional. (Okay. Our linter would detect the access to the global
variable "done" and complain.)
Mark