From 87284a13c83372634649a93e412cd4b89ee913d3 Mon Sep 17 00:00:00 2001 From: sof Date: Wed, 7 Nov 2001 18:18:51 +0000 Subject: [PATCH] [project @ 2001-11-07 18:18:51 by sof] PrelTopHandler.lhs -> PrelTopHandler.hs (CVS history for this file wasn't interesting enough for a dirty behind-the-scenes repo move). --- ghc/lib/std/{PrelTopHandler.lhs => PrelTopHandler.hs} | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) rename ghc/lib/std/{PrelTopHandler.lhs => PrelTopHandler.hs} (92%) diff --git a/ghc/lib/std/PrelTopHandler.lhs b/ghc/lib/std/PrelTopHandler.hs similarity index 92% rename from ghc/lib/std/PrelTopHandler.lhs rename to ghc/lib/std/PrelTopHandler.hs index 30c9884..54da967 100644 --- a/ghc/lib/std/PrelTopHandler.lhs +++ b/ghc/lib/std/PrelTopHandler.hs @@ -1,7 +1,7 @@ +{-# OPTIONS -#include "PrelIOUtils.h" #-} -- ----------------------------------------------------------------------------- --- $Id: PrelTopHandler.lhs,v 1.5 2001/08/17 11:13:04 rrt Exp $ -- --- (c) The University of Glasgow, 2001 +-- (c) The University of Glasgow, 1994- -- -- PrelTopHandler -- @@ -16,8 +16,9 @@ -- These functions can't go in PrelMain, because PrelMain isn't -- included in HSstd.o (because PrelMain depends on Main, which -- doesn't exist yet...). - -\begin{code} +-- +-- Note: used to be called PrelTopHandler.lhs, so if you're looking +-- for CVS info, try 'cvs log'ging it too. module PrelTopHandler ( topHandler, reportStackOverflow, reportError ) where @@ -83,4 +84,4 @@ foreign import ccall "stackOverflow" unsafe foreign import ccall "stg_exit" unsafe stg_exit :: Int -> IO () -\end{code} + -- 1.7.10.4