summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dat/clua/init.lua
blob: 51d5ab04010c2fe8f7f1712f24e11d0f72d7dcd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
------------------------------------------------------------------------------
-- init.lua
-- Common CLua initializtion.
------------------------------------------------------------------------------

-----
-- Set up echoing function for interpreter.
-----

function echoall(...)
  util.foreach({...}, crawl.mpr)
end

__echo = echoall