Fix tail call argument handling.

This commit is contained in:
James Roseborough
2007-08-03 05:42:50 +00:00
parent 5fb097d107
commit b8376fe0ef
2 changed files with 11 additions and 0 deletions

View File

@@ -49,3 +49,14 @@ p()
p("q")
p("q","r")
p("q","r","s")
function first(...)
return 'abc'
end
function second( a, b, c )
return first( a, b, c )
end
print( 'second', second() )

Binary file not shown.