diff options
author | David Walter Seikel | 2012-02-02 01:01:38 +1000 |
---|---|---|
committer | David Walter Seikel | 2012-02-02 01:01:38 +1000 |
commit | 1b77a80dbc1b1a64ecda59bbde898b134bbd3c20 (patch) | |
tree | 3564e3fd44c6c017d18f98778a58c460bce0af07 /LuaSL/src | |
parent | Turn on diffing again, getting hard to tell the difference manually. (diff) | |
download | SledjHamr-1b77a80dbc1b1a64ecda59bbde898b134bbd3c20.zip SledjHamr-1b77a80dbc1b1a64ecda59bbde898b134bbd3c20.tar.gz SledjHamr-1b77a80dbc1b1a64ecda59bbde898b134bbd3c20.tar.bz2 SledjHamr-1b77a80dbc1b1a64ecda59bbde898b134bbd3c20.tar.xz |
Ignore white space diffences for now.
Diffstat (limited to 'LuaSL/src')
-rw-r--r-- | LuaSL/src/LuaSL_compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LuaSL/src/LuaSL_compile.c b/LuaSL/src/LuaSL_compile.c index 5f5389b..26efbd7 100644 --- a/LuaSL/src/LuaSL_compile.c +++ b/LuaSL/src/LuaSL_compile.c | |||
@@ -1775,7 +1775,7 @@ static boolean doneParsing(LuaSL_compiler *compiler) | |||
1775 | strcat(diffName, ".diff"); | 1775 | strcat(diffName, ".diff"); |
1776 | outputLeaf(out, OM_LSL, compiler->ast); | 1776 | outputLeaf(out, OM_LSL, compiler->ast); |
1777 | fclose(out); | 1777 | fclose(out); |
1778 | sprintf(buffer, "diff -u \"%s\" \"%s\" > \"%s\"", compiler->fileName, outName, diffName); | 1778 | sprintf(buffer, "diff -wu \"%s\" \"%s\" > \"%s\"", compiler->fileName, outName, diffName); |
1779 | count = system(buffer); | 1779 | count = system(buffer); |
1780 | if (0 != count) | 1780 | if (0 != count) |
1781 | PE("LSL output file is different - %s!", outName); | 1781 | PE("LSL output file is different - %s!", outName); |