From 6014c5aa439d4b4ae0b97af64825371a86e78c2c Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 24 Jul 2018 16:42:14 -0700 Subject: [PATCH] Removed debugging shim. --- nomsu_compiler.moon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nomsu_compiler.moon b/nomsu_compiler.moon index 82d0e14..74158e8 100644 --- a/nomsu_compiler.moon +++ b/nomsu_compiler.moon @@ -297,7 +297,7 @@ with NomsuCompiler .run_lua = (lua, source=nil)=> lua_string = tostring(lua) - run_lua_fn, err = load(lua_string, nil and tostring(source or lua.source), "t", self) + run_lua_fn, err = load(lua_string, tostring(source or lua.source), "t", self) if not run_lua_fn line_numbered_lua = concat( [format("%3d|%s",i,line) for i, line in ipairs Files.get_lines(lua_string)],