From 1c5d9ea63eda67620c93c97634facd513cad3b8a Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Thu, 2 Feb 2012 02:22:18 +1000 Subject: Tweak the space around crements, still not perfect though. --- LuaSL/src/LuaSL_compile.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'LuaSL/src') diff --git a/LuaSL/src/LuaSL_compile.c b/LuaSL/src/LuaSL_compile.c index cae3c86..de23b78 100644 --- a/LuaSL/src/LuaSL_compile.c +++ b/LuaSL/src/LuaSL_compile.c @@ -1662,13 +1662,13 @@ static void outputCrementsToken(FILE *file, outputMode mode, LSL_Leaf *content) case LSL_INCREMENT_PRE : { fprintf(file, "%s", content->toKen->toKen); - outputText(file, &(content->value.identifierValue->name), !(LSL_NOIGNORE & content->toKen->flags)); + outputText(file, &(content->value.identifierValue->name), FALSE); break; } case LSL_DECREMENT_POST : case LSL_INCREMENT_POST : { - outputText(file, &(content->value.identifierValue->name), !(LSL_NOIGNORE & content->toKen->flags)); + outputText(file, &(content->value.identifierValue->name), FALSE); fprintf(file, "%s", content->toKen->toKen); break; } @@ -1801,7 +1801,6 @@ static void outputStateToken(FILE *file, outputMode mode, LSL_Leaf *content) outputText(file, &(state->state), !(LSL_NOIGNORE & content->toKen->flags)); outputText(file, &(state->name), !(LSL_NOIGNORE & content->toKen->flags)); outputRawBlock(file, mode, state->block); - fprintf(file, "\n"); } } } -- cgit v1.1