diff options
author | Ian Lynagh <igloo@earth.li> | 2006-10-13 13:15:14 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2006-10-13 13:15:14 +0000 |
commit | 28d732c362e13e58d653b3dc15fd376c3f0c54c2 (patch) | |
tree | 0d9a7bbd5e6c6b9e595ba499439405e0f37186e4 /utils/unlit | |
parent | 1166c7d62f3fa9acd2084c90df6585cbbf868ceb (diff) | |
download | haskell-28d732c362e13e58d653b3dc15fd376c3f0c54c2.tar.gz |
Uncomment code to emit a space in place of a '>' in literate scripts
This fixes trac #210. Test is read041.
Diffstat (limited to 'utils/unlit')
-rw-r--r-- | utils/unlit/unlit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/unlit/unlit.c b/utils/unlit/unlit.c index 366302156a..c5beeb1cbf 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); |