Browse Source

clean up some less than ideal commits

master
XeonSquared 10 months ago
parent
commit
3d6017f87e
2 changed files with 1 additions and 2 deletions
  1. +1
    -1
      module/io.lua
  2. +0
    -1
      module/syslog.lua

+ 1
- 1
module/io.lua View File

@@ -34,7 +34,7 @@ end


function print(...) -- Writes each argument to the default output stream, separated by space. function print(...) -- Writes each argument to the default output stream, separated by space.
for k,v in ipairs({...}) do for k,v in ipairs({...}) do
io.write(tostring(v).." ")
io.write(tostring(v).."\t")
end end
io.write("\n") io.write("\n")
end end

+ 0
- 1
module/syslog.lua View File

@@ -1,4 +1,3 @@
--#include "module/ocelot-debug.lua"
do do
syslog = {} syslog = {}
syslog.emergency = 0 syslog.emergency = 0


Loading…
Cancel
Save