Fix CPP failure by adding space before hASH_TBL_SIZE
authorsimonpj@microsoft.com <unknown>
Thu, 9 Feb 2006 09:37:04 +0000 (09:37 +0000)
committersimonpj@microsoft.com <unknown>
Thu, 9 Feb 2006 09:37:04 +0000 (09:37 +0000)
ghc/compiler/utils/FastString.lhs

index 4d432e6..ea30779 100644 (file)
@@ -436,7 +436,7 @@ nilFS = mkFastString ""
 getFastStringTable :: IO [[FastString]]
 getFastStringTable = do
   tbl <- readIORef string_table
-  buckets <- mapM (lookupTbl tbl) [0..hASH_TBL_SIZE]
+  buckets <- mapM (lookupTbl tbl) [0 .. hASH_TBL_SIZE]
   return buckets
 
 -- -----------------------------------------------------------------------------