
10 Jan
2004
10 Jan
'04
7:47 a.m.
ross 2004/01/10 04:47:32 PST Modified files: libraries/Hugs Prelude.hs src output.c static.c tests/libs dirTest.output Log: Change derived Show instance for records to match GHC: before: C{a=-1,b=True} after: C {a = -1, b = True} The space after the = is necessary to get something that can be re-parsed; the rest are for balance. Also changed the expression printer to match: before: C{a = -1, b = True} after: C {a = -1, b = True} Revision Changes Path 1.36 +1 -1 hugs98/libraries/Hugs/Prelude.hs 1.37 +3 -3 hugs98/src/output.c 1.167 +11 -9 hugs98/src/static.c 1.5 +3 -3 hugs98/tests/libs/dirTest.output