# HG changeset patch # User William Astle # Date 1339374802 21600 # Node ID 3604d0ef06c697d8a97dfdba392aec163e225e4a # Parent afd50d6b411368c365a25d63821eca524fa5abda Fix thinko in previous commit Only output the processed source code iff the --preprocess option is given. diff -r afd50d6b4113 -r 3604d0ef06c6 lwasm/pass1.c --- a/lwasm/pass1.c Sun Jun 10 18:24:31 2012 -0600 +++ b/lwasm/pass1.c Sun Jun 10 18:33:22 2012 -0600 @@ -423,7 +423,7 @@ lw_free(line); - if (cl -> hideline == 0) + if (as -> preprocess && cl -> hideline == 0) { printf("%s\n", cl -> ltext); }