RE: Strange Rev 3.5 problem

2012-03-09 Thread Paul D. DeRocco
>> On Thu, Mar 8, 2012 at 7:35 PM, Paul D. DeRocco wrote: >> >> I'm recompiling an old program with a few minor mods, and now I'm >> getting the following error on a line in my first handler that merely >> says "local s": >> >> stack "main": compilation error at line 139 (local: name shadows >>

Re: Strange Rev 3.5 problem

2012-03-08 Thread Mike Bonner
Might look here: http://www.runrevplanet.com/index.php?option=com_content&view=article&id=205:52-tips-in-as-many-weeks-tip-52&catid=57:tip-of-the-week&Itemid=65 #23 and possibly here: http://runtime-revolution.278305.n4.nabble.com/What-does-shadows-mean-td3889721.html Not sure if there is anythin

Re: Strange Rev 3.5 problem

2012-03-08 Thread Mark Schonewille
Hi, You might have something like this: local s on mouseUp local s put s end mouseUp which should be either on mouseUp local s put s end mouseUp or local s on mouseUp put s end mouseUp If you use local s in multiple handlers, then the error will show up for every ha