(F)SLIT -> (f)sLit in HscMain
authorIan Lynagh <igloo@earth.li>
Sat, 12 Apr 2008 16:33:20 +0000 (16:33 +0000)
committerIan Lynagh <igloo@earth.li>
Sat, 12 Apr 2008 16:33:20 +0000 (16:33 +0000)
compiler/main/HscMain.lhs

index 0b8a5a2..f686f34 100644 (file)
@@ -32,8 +32,6 @@ module HscMain
     , makeSimpleDetails
     ) where
 
-#include "HsVersions.h"
-
 #ifdef GHCI
 import CodeOutput      ( outputForeignStubs )
 import ByteCodeGen     ( byteCodeGen, coreExprToBCOs )
@@ -929,7 +927,7 @@ hscParseThing parser dflags str
 
       buf <- stringToStringBuffer str
 
-      let loc  = mkSrcLoc FSLIT("<interactive>") 1 0
+      let loc  = mkSrcLoc (fsLit "<interactive>") 1 0
 
       case unP parser (mkPState buf loc dflags) of {