From 7394408f54e3900162176dc755e50fd167531c9c Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 19 Dec 2002 12:49:27 +0000 Subject: [PATCH] [project @ 2002-12-19 12:49:27 by simonmar] Make this compile again --- ghc/compiler/ghci/InteractiveUI.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghc/compiler/ghci/InteractiveUI.hs b/ghc/compiler/ghci/InteractiveUI.hs index 5801a38..37f1f92 100644 --- a/ghc/compiler/ghci/InteractiveUI.hs +++ b/ghc/compiler/ghci/InteractiveUI.hs @@ -1,6 +1,6 @@ {-# OPTIONS -#include "Linker.h" -#include "SchedAPI.h" #-} ----------------------------------------------------------------------------- --- $Id: InteractiveUI.hs,v 1.139 2002/12/12 13:21:46 ross Exp $ +-- $Id: InteractiveUI.hs,v 1.140 2002/12/19 12:49:27 simonmar Exp $ -- -- GHC Interactive User Interface -- @@ -833,9 +833,9 @@ setOptions wds = mapM_ setOpt plus_opts -- now, the GHC flags - pkgs_before <- io (readIORef v_Packages) + pkgs_before <- io (readIORef v_ExplicitPackages) leftovers <- io (processArgs static_flags minus_opts []) - pkgs_after <- io (readIORef v_Packages) + pkgs_after <- io (readIORef v_ExplicitPackages) -- update things if the users wants more packages let new_packages = pkgs_after \\ pkgs_before -- 1.7.10.4