Make ascii clean and ghci clean, bump

This commit is contained in:
Don Stewart
2010-09-23 19:43:18 +00:00
parent bdd7df5bec
commit f56ab96f34
11 changed files with 23 additions and 12 deletions

View File

@ -1,4 +1,7 @@
{-# OPTIONS -fglasgow-exts #-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE MagicHash #-}
{-# LANGUAGE UnboxedTuples #-}
{-# LANGUAGE ForeignFunctionInterface #-}
--
-- Copyright (C) 2004-5 Don Stewart - http://www.cse.unsw.edu.au/~dons
--
@ -392,8 +395,8 @@ reload m@(Module{path = p, iface = hi}) sym = do
Nothing -> LoadFailure ["load: couldn't find symbol <<"++sym++">>"]
Just a -> LoadSuccess m' a
-- ---------------------------------------------------------------------
-- This is a stripped-down version of Andr<EFBFBD> Pang's runtime_loader,
--
-- This is a stripped-down version of Andre Pang's runtime_loader,
-- which in turn is based on GHC's ghci\/ObjLinker.lhs binding
--
-- Load and unload\/Haskell modules at runtime. This is not really
@ -406,7 +409,7 @@ reload m@(Module{path = p, iface = hi}) sym = do
--
-- read $fptools\/ghc\/compiler\/ghci\/ObjLinker.lhs for how to use this stuff
--
------------------------------------------------------------------------
-- | Call the initLinker function first, before calling any of the other
-- functions in this module - otherwise you\'ll get unresolved symbols.