Uncomment code to emit a space in place of a '>' in literate scripts
authorIan Lynagh <igloo@earth.li>
Fri, 13 Oct 2006 13:15:14 +0000 (13:15 +0000)
committerIan Lynagh <igloo@earth.li>
Fri, 13 Oct 2006 13:15:14 +0000 (13:15 +0000)
This fixes trac #210. Test is read041.

utils/unlit/unlit.c

index 3663021..c5beeb1 100644 (file)
@@ -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);