From 28d732c362e13e58d653b3dc15fd376c3f0c54c2 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 13 Oct 2006 13:15:14 +0000 Subject: [PATCH] Uncomment code to emit a space in place of a '>' in literate scripts This fixes trac #210. Test is read041. --- utils/unlit/unlit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 1.7.10.4