Browse Source

made loadfile less chatty

pull/1/head
XeonSquared 4 years ago
parent
commit
ac98d09b93
1 changed files with 0 additions and 1 deletions
  1. +0
    -1
      module/loadfile.lua

+ 0
- 1
module/loadfile.lua View File

@@ -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


Loading…
Cancel
Save