[Home] [Downloads] [Search] [Help/forum]

Gammon Software Solutions forum

See www.mushclient.com/spam for dealing with forum spam. Please read the MUSHclient FAQ!

[Folder]  Entire forum
-> [Folder]  MUSHclient
. -> [Folder]  Lua
. . -> [Subject]  varargs

Home  |  Users  |  Search  |  FAQ
Username:
Register forum user name
Password:
Forgotten password?

varargs

[Reply to this subject]  Reply to this subject   [New subject]  Start a new subject   [Refresh] Refresh page


Posted by Robin Lionheart   (14 posts)  [Biography] 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?
[Go to top] top

Posted by Ked   Russia  (524 posts)  [Biography] bio
Date Reply #1 on Fri 24 Nov 2006 10:57 AM (UTC)  quote  ]
Message
It's
Note(unpack(...))
[Go to top] top

Posted by Nick Gammon   Australia  (18,772 posts)  [Biography] 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
[Go to top] top

Posted by Ked   Russia  (524 posts)  [Biography] 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.
[Go to top] 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]  Reply to this subject   [New subject]  Start a new subject   [Refresh] Refresh page

Go to topic:           Search the forum


[Go to top] top

[Home]

Written by Nick Gammon - 5K

Comments to: Gammon Software support
[RH click to get RSS URL] Forum RSS feed ( http://www.gammon.com.au/rss/forum.xml )

[Best viewed with any browser - 2K]    [Internet Contents Rating Association (ICRA) - 2K]    [Web site powered by FutureQuest.Net]