Reply to this subject
Start a new subject
 
Refresh page
| Posted by |
Robin Lionheart
(14 posts) bio
|
| Date |
Fri 24 Nov 2006 10:12 AM (UTC) [ quote
] |
| Message |
I tried to make a varargs function
function debug_message(...)
if GetVariable("Debug") then
Note(unpack(arg))
end
end
But the unpack() line merely threw an error about arg being nil. Perhaps I'm not following the Lua manual correctly. Am I missing something? | top |
|
| Posted by |
Ked
Russia (524 posts) bio
|
| Date |
Reply #1 on Fri 24 Nov 2006 10:57 AM (UTC) [ quote
] |
| Message |
|
| Posted by |
Nick Gammon
Australia (18,772 posts) bio
Forum Administrator |
| Date |
Reply #2 on Fri 24 Nov 2006 08:31 PM (UTC) [ quote
] |
| Message |
Not quite, Ked.
Under Lua 5.0 there was a dummy "arg" variable created by Lua for functions that had the "..." syntax. Now (in Lua 5.1) you just refer to "..." where you need the arguments. So your function should look like this:
function debug_message(...)
if GetVariable("Debug") then
Note(...)
end
end
|
- Nick Gammon
www.gammon.com.au, www.mushclient.com | top |
|
| Posted by |
Ked
Russia (524 posts) bio
|
| Date |
Reply #3 on Sat 25 Nov 2006 01:37 AM (UTC) [ quote
] |
| Message |
| Ah, right. I didn't pay attention to how the list was actually being used. | top |
|
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
3,219 views.
Reply to this subject
Start a new subject
 
Refresh page
top
Comments to:
Gammon Software support
Forum RSS feed ( http://www.gammon.com.au/rss/forum.xml )