From: Ian Lynagh Date: Fri, 13 Oct 2006 13:15:14 +0000 (+0000) Subject: Uncomment code to emit a space in place of a '>' in literate scripts X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=28d732c362e13e58d653b3dc15fd376c3f0c54c2 Uncomment code to emit a space in place of a '>' in literate scripts This fixes trac #210. Test is read041. --- diff --git a/utils/unlit/unlit.c b/utils/unlit/unlit.c index 3663021..c5beeb1 100644 --- a/utils/unlit/unlit.c +++ b/utils/unlit/unlit.c @@ -204,7 +204,7 @@ FILE *istream, *ostream; { } if (c==DEFNCHAR) { -/* myputc(' ',ostream);*/ + myputc(' ',ostream); while (c=egetc(istream), !isLineTerm(c)) myputc(c,ostream); myputc('\n',ostream);