aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_compile.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-22 10:07:43 +1000
committerDavid Walter Seikel2012-01-22 10:07:43 +1000
commitf1f4f875fc1207c8d30b5ff35ca9087077430d22 (patch)
treed29b1873eef2d0a538024b8e176a35585bb6aabd /LuaSL/src/LuaSL_compile.c
parentConsider a script as properly compiled if it passes the diff test. (diff)
downloadSledjHamr-f1f4f875fc1207c8d30b5ff35ca9087077430d22.zip
SledjHamr-f1f4f875fc1207c8d30b5ff35ca9087077430d22.tar.gz
SledjHamr-f1f4f875fc1207c8d30b5ff35ca9087077430d22.tar.bz2
SledjHamr-f1f4f875fc1207c8d30b5ff35ca9087077430d22.tar.xz
Tidy up the output.
Diffstat (limited to '')
-rw-r--r--LuaSL/src/LuaSL_compile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/LuaSL/src/LuaSL_compile.c b/LuaSL/src/LuaSL_compile.c
index 52db12a..9e4d4c1 100644
--- a/LuaSL/src/LuaSL_compile.c
+++ b/LuaSL/src/LuaSL_compile.c
@@ -1296,7 +1296,7 @@ boolean compileLSL(gameGlobals *game, char *script, boolean doConstants)
1296 return FALSE; 1296 return FALSE;
1297 } 1297 }
1298 printf("\n"); 1298 printf("\n");
1299 PI("Opened %s.", compiler.fileName); 1299 PD("Compiling %s.", compiler.fileName);
1300 compiler.ast = NULL; 1300 compiler.ast = NULL;
1301 compiler.lval = newLeaf(LSL_UNKNOWN, NULL, NULL); 1301 compiler.lval = newLeaf(LSL_UNKNOWN, NULL, NULL);
1302 // Text editors usually start counting at 1, even programmers editors. 1302 // Text editors usually start counting at 1, even programmers editors.
@@ -1346,7 +1346,7 @@ boolean compileLSL(gameGlobals *game, char *script, boolean doConstants)
1346 } 1346 }
1347 } 1347 }
1348 secondPass(&compiler, compiler.ast); 1348 secondPass(&compiler, compiler.ast);
1349 PI("Second pass completed."); 1349 PD("Second pass completed.");
1350 } 1350 }
1351 1351
1352 if (doConstants) 1352 if (doConstants)