aboutsummaryrefslogtreecommitdiff
path: root/nomsu_compiler.moon
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2018-06-19 02:00:52 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2018-06-19 02:00:59 -0700
commit7deed5af411689f198ebec5338476a563cb7ef28 (patch)
tree6d74966b48666a64337977dcc6a6a5e6a40f0cbf /nomsu_compiler.moon
parent59c79bdf57ce31d5f2fe15dbbdcc6ff345adc651 (diff)
Fixing up some error reporting
Diffstat (limited to 'nomsu_compiler.moon')
-rw-r--r--nomsu_compiler.moon2
1 files changed, 1 insertions, 1 deletions
diff --git a/nomsu_compiler.moon b/nomsu_compiler.moon
index 8226db4..4d7b4cf 100644
--- a/nomsu_compiler.moon
+++ b/nomsu_compiler.moon
@@ -339,7 +339,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 get_lines\match(lua_string)],