From ac98d09b938c36850702771aa814a5ee390dd8da Mon Sep 17 00:00:00 2001 From: XeonSquared Date: Sat, 9 Nov 2019 13:46:51 +1100 Subject: [PATCH] made loadfile less chatty --- module/loadfile.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/module/loadfile.lua b/module/loadfile.lua index 7e51efc..b26aeb4 100644 --- a/module/loadfile.lua +++ b/module/loadfile.lua @@ -8,7 +8,6 @@ function runfile(p,...) -- runs file *p* with arbitrary arguments in the current return loadfile(p)(...) end function os.spawnfile(p,n) -- spawns a new process from file *p* with name *n* - dprint(p,n) return os.spawn(function() xpcall(loadfile(p),function(e) dprint(e.."\n"..debug.traceback()) end) end,n or p) end function require(f) -- searches for a library with name *f* and returns what the library returns, if possible