[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: debugging with Lua For Windows on Windows 7?
- From: steve donovan <steve.j.donovan@...>
- Date: Fri, 26 Mar 2010 18:38:28 +0200
On Fri, Mar 26, 2010 at 5:28 PM, Benoit Germain <bgermain@ubisoft.fr> wrote:
> I looks like a file that failed to open. As far as I can tell, the file name
> is contained in props[‘TMP’], but I haven’t found where this props table
> comes from, or what it contains.
The SciTE props pseudo-table also contains the values of environment
variables. So in debugger.lua, you have
io.open(os.getenv('TMP')..'\\clidebug.cmd')
So the question is, what is %TMP%?
steve d.