aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-16 05:34:03 +1000
committerDavid Walter Seikel2012-01-16 05:34:03 +1000
commit7e3535791469db45e92f35871f004735f5e978b7 (patch)
tree4e0f7cd3dc29cd400b2df0fcdf60941221532ea8 /LuaSL
parentAuto test file with no arguments. (diff)
downloadSledjHamr-7e3535791469db45e92f35871f004735f5e978b7.zip
SledjHamr-7e3535791469db45e92f35871f004735f5e978b7.tar.gz
SledjHamr-7e3535791469db45e92f35871f004735f5e978b7.tar.bz2
SledjHamr-7e3535791469db45e92f35871f004735f5e978b7.tar.xz
Missed a debug ifdef.
Diffstat (limited to 'LuaSL')
-rw-r--r--LuaSL/src/LuaSL_LSL_tree.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/LuaSL/src/LuaSL_LSL_tree.c b/LuaSL/src/LuaSL_LSL_tree.c
index dc927ad..a0490c9 100644
--- a/LuaSL/src/LuaSL_LSL_tree.c
+++ b/LuaSL/src/LuaSL_LSL_tree.c
@@ -841,7 +841,9 @@ int main(int argc, char **argv)
841 yyset_debug(1, param.scanner); 841 yyset_debug(1, param.scanner);
842#endif 842#endif
843 yyset_in(param.file, param.scanner); 843 yyset_in(param.file, param.scanner);
844#ifdef LUASL_DEBUG
844 ParseTrace(stdout, "LSL_lemon "); 845 ParseTrace(stdout, "LSL_lemon ");
846#endif
845 // on EOF yylex will return 0 847 // on EOF yylex will return 0
846 while((yv = yylex(param.lval, param.scanner)) != 0) 848 while((yv = yylex(param.lval, param.scanner)) != 0)
847 { 849 {