The Prelude tweak for threading mentioned for 1.15 is no longer necessary.
Small source changes to accommodate new hierarchical module name spaces.
Small source tweaks for comment lexer changes ("--|" is no longer a comment).
Tiny tweak for compatibility with the February 2001 version
of Hugs98. Note: Fran examples will die immediately with "Program error: no more threads (deadlock?)"
unless you make a small change to your Hugs98/lib/Prelude.hs. Find the line that says:
loop (Hugs_ForkThread a b:r) = loop (a:b:r)
and swap "a" and "b" in the right hand side, i.e.,
change the line to
loop (Hugs_ForkThread a b:r) = loop (b:a:r)
My thanks to Sigbjørn Finne for this fix.
Tiny tweak for compatibility with recently changed win32 libs.
Update for Hugs98. Fran was packaged with Hugs98, but didn't work because of version skew and showable functions. Thanks very much to Mark Jones for porting Fran from Haskell 1.4 to Haskell 98.