lua-users home
lua-l archive

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


On Apr 14, 2014, at 12:22 PM, Roberto Ierusalimschy <roberto@inf.puc-rio.br> wrote:

>> While working on Lunia I noticed a small typo/bug in the all.lua test script.
>> 
>> Line 40:
>> package.path = "?;./?.lua" .. package.path
>> 
>> Correction:
>> package.path = "?;./?.lua;" .. package.path
>> 
>> The original line is missing a semicolon which causes the "./?.lua" portion of the search path to be concatenated with the next entry, which on my system results in "./?.lua/usr/local/share/lua/5.3/?.lua" instead of "./?.lua;/usr/local/share/lua/5.3/?.lua".
>> 
>> This typo does not affect my tests, actually the entire line can be commented out without any ill effect, but I thought I would report it so it could be fixed in case it causes issues for tests I may not have enabled.
> 
> Thanks for the report. In fact, this line can be (and will be) removed
> without any effect.
> 
> -- Roberto

Good to know it can be removed, I will do so from my test suite, thank you for the update!

Also, I was wondering if you had seen my previous post about the 64-bit implicit conversion warnings?

~pmd~