[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: lua5 pcall
- From: "D Burgess" <db@...>
- Date: Wed, 27 Aug 2003 15:13:5 +1000
In lua5
st,a,b = pcall(object:func, parameter)
does not work
while
st,a,b = pcall(object.func, object, parameter)
is required.
Is this a fault or by design?