[project @ 2005-02-03 10:32:11 by ross]
authorross <unknown>
Thu, 3 Feb 2005 10:32:20 +0000 (10:32 +0000)
committerross <unknown>
Thu, 3 Feb 2005 10:32:20 +0000 (10:32 +0000)
hide GHC internals from Haddock

30 files changed:
GHC/Arr.lhs
GHC/Base.lhs
GHC/Conc.lhs
GHC/ConsoleHandler.hs
GHC/Dotnet.hs
GHC/Enum.lhs
GHC/Err.lhs
GHC/Exception.lhs
GHC/Float.lhs
GHC/ForeignPtr.hs
GHC/Handle.hs
GHC/IO.hs
GHC/IOBase.lhs
GHC/Int.hs
GHC/List.lhs
GHC/Num.lhs
GHC/PArr.hs
GHC/Pack.lhs
GHC/Ptr.lhs
GHC/Read.lhs
GHC/Real.lhs
GHC/ST.lhs
GHC/STRef.lhs
GHC/Show.lhs
GHC/Stable.lhs
GHC/Storable.lhs
GHC/TopHandler.lhs
GHC/Unicode.hs
GHC/Weak.lhs
GHC/Word.hs

index b376c2f..3de82ee 100644 (file)
@@ -14,6 +14,7 @@
 -- 
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.Arr where
 
 import {-# SOURCE #-} GHC.Err ( error )
index 7d310b7..bf37476 100644 (file)
@@ -81,6 +81,7 @@ Other Prelude modules are much easier with fewer complex dependencies.
 
 #include "MachDeps.h"
 
+-- #hide
 module GHC.Base
        (
        module GHC.Base,
index 0e74dc7..6dbe991 100644 (file)
@@ -14,6 +14,7 @@
 -- 
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.Conc
        ( ThreadId(..)
 
index 8a9e2e0..646ae72 100644 (file)
@@ -12,6 +12,7 @@
 -- Installing Win32 console handlers.
 -- 
 -----------------------------------------------------------------------------
+-- #hide
 module GHC.ConsoleHandler
 #ifndef mingw32_HOST_OS
        where
index 64a84b7..d371427 100644 (file)
@@ -12,6 +12,7 @@
 -- Primitive operations and types for doing .NET interop
 -- 
 -----------------------------------------------------------------------------
+-- #hide
 module GHC.Dotnet 
        ( Object
        , unmarshalObject
index 655b53f..89c8b67 100644 (file)
@@ -14,6 +14,7 @@
 -- 
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.Enum(
        Bounded(..), Enum(..),
        boundedEnumFrom, boundedEnumFromThen,
index 53dedf1..85453aa 100644 (file)
@@ -19,6 +19,7 @@
 -- 
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.Err 
        (
          irrefutPatError
index fb9e7aa..0f9223d 100644 (file)
@@ -14,6 +14,7 @@
 -- 
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.Exception 
        ( module GHC.Exception, 
          Exception(..), AsyncException(..), 
index 9831ec9..c4003b4 100644 (file)
@@ -16,6 +16,7 @@
 
 #include "ieee-flpt.h"
 
+-- #hide
 module GHC.Float( module GHC.Float, Float#, Double# )  where
 
 import Data.Maybe
index f6a61c1..359333d 100644 (file)
@@ -13,6 +13,7 @@
 -- 
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.ForeignPtr
   (
        ForeignPtr(..),
index 2ea5c38..513a4a4 100644 (file)
@@ -17,6 +17,7 @@
 --
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.Handle (
   withHandle, withHandle', withHandle_,
   wantWritableHandle, wantReadableHandle, wantSeekableHandle,
index 6cc8aaa..d8dbbb9 100644 (file)
--- a/GHC/IO.hs
+++ b/GHC/IO.hs
@@ -16,6 +16,7 @@
 --
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.IO ( 
    hWaitForInput, hGetChar, hGetLine, hGetContents, hPutChar, hPutStr,
    commitBuffer',      -- hack, see below
index a58ee79..0a3cfca 100644 (file)
@@ -14,6 +14,7 @@
 --
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.IOBase(
     IO(..), unIO, failIO, liftIO, bindIO, thenIO, returnIO, 
     unsafePerformIO, unsafeInterleaveIO,
index 4416bfe..e48656d 100644 (file)
@@ -15,6 +15,7 @@
 
 #include "MachDeps.h"
 
+-- #hide
 module GHC.Int (
     Int8(..), Int16(..), Int32(..), Int64(..))
     where
index 0211965..3dd0da1 100644 (file)
@@ -14,6 +14,7 @@
 --
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.List (
    -- [] (..),         -- Not Haskell 98; built in syntax
 
index 76d6c8b..b5e27a8 100644 (file)
@@ -23,6 +23,7 @@
 #error Please define LEFTMOST_BIT to be 2^(SIZEOF_HSWORD*8-1)
 #endif
 
+-- #hide
 module GHC.Num where
 
 import {-# SOURCE #-} GHC.Err
index 8ce4488..be5ff94 100644 (file)
@@ -71,6 +71,7 @@
 --  * We might want to add bounds checks that can be deactivated.
 --
 
+-- #hide
 module GHC.PArr (
   -- [::],             -- Built-in syntax
 
index 17d371e..5953f28 100644 (file)
@@ -19,6 +19,7 @@
 --
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.Pack
        (
        -- (**) - emitted by compiler.
index 31daa5f..222524c 100644 (file)
@@ -14,6 +14,7 @@
 --
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.Ptr where
 
 import GHC.Base
index e24cbe5..9ade045 100644 (file)
@@ -14,6 +14,7 @@
 --
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.Read 
   ( Read(..)   -- class
   
index c12146b..31e8160 100644 (file)
@@ -15,6 +15,7 @@
 --
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.Real where
 
 import {-# SOURCE #-} GHC.Err
index ebfb224..cdccb18 100644 (file)
@@ -14,6 +14,7 @@
 --
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.ST where
 
 import GHC.Base
index 9824b15..efaa578 100644 (file)
@@ -14,6 +14,7 @@
 --
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.STRef where
 
 import GHC.ST
index 133e2d5..f01e29b 100644 (file)
@@ -14,6 +14,7 @@
 --
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.Show
        (
        Show(..), ShowS,
index b52e756..13194f5 100644 (file)
@@ -14,6 +14,7 @@
 --
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.Stable 
        ( StablePtr(..)
        , newStablePtr          -- :: a -> IO (StablePtr a)    
index 7e3c7da..3a53f4b 100644 (file)
@@ -14,6 +14,7 @@
 --
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.Storable
        ( readWideCharOffPtr  
        , readIntOffPtr       
index 829752e..b1ac1b8 100644 (file)
@@ -14,6 +14,7 @@
 --
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.TopHandler (
    runMainIO, runIO, runNonIO, reportStackOverflow, reportError
   ) where
index d5846c1..52d14f3 100644 (file)
@@ -15,6 +15,7 @@
 --
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.Unicode (
     isAscii, isLatin1, isControl,
     isAsciiUpper, isAsciiLower,
index cd82b76..5935f18 100644 (file)
@@ -14,6 +14,7 @@
 --
 -----------------------------------------------------------------------------
 
+-- #hide
 module GHC.Weak where
 
 import GHC.Base
index eb0a9c3..022a85e 100644 (file)
@@ -16,6 +16,7 @@
 
 #include "MachDeps.h"
 
+-- #hide
 module GHC.Word (
     Word(..), Word8(..), Word16(..), Word32(..), Word64(..),
     toEnumError, fromEnumError, succError, predError)