aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--LuaSL/src/LuaSL_compile.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/LuaSL/src/LuaSL_compile.c b/LuaSL/src/LuaSL_compile.c
index 4cd671d..cf19c99 100644
--- a/LuaSL/src/LuaSL_compile.c
+++ b/LuaSL/src/LuaSL_compile.c
@@ -2230,6 +2230,7 @@ static boolean doneParsing(LuaSL_compiler *compiler)
2230 fprintf(out, "function stateChange(x) end;\n"); 2230 fprintf(out, "function stateChange(x) end;\n");
2231 fprintf(out, "--// Generated code goes here.\n\n"); 2231 fprintf(out, "--// Generated code goes here.\n\n");
2232 outputLeaf(out, OM_LUA, compiler->ast); 2232 outputLeaf(out, OM_LUA, compiler->ast);
2233 fprintf(out, "\n\n--// End of generated code.\n\n");
2233 fclose(out); 2234 fclose(out);
2234 sprintf(buffer, "luac \"%s\"", luaName); 2235 sprintf(buffer, "luac \"%s\"", luaName);
2235 count = system(buffer); 2236 count = system(buffer);