[project @ 2002-04-24 16:31:37 by simonmar]
authorsimonmar <unknown>
Wed, 24 Apr 2002 16:31:47 +0000 (16:31 +0000)
committersimonmar <unknown>
Wed, 24 Apr 2002 16:31:47 +0000 (16:31 +0000)
Add the single character '|' to the header comment of each module so
that Haddock will parse it as the module documentation.

102 files changed:
Control/Concurrent.hs
Control/Concurrent/CVar.hs
Control/Concurrent/Chan.hs
Control/Concurrent/MVar.hs
Control/Concurrent/QSem.hs
Control/Concurrent/QSemN.hs
Control/Concurrent/SampleVar.hs
Control/Exception.hs
Control/Monad.hs
Control/Monad/Cont.hs
Control/Monad/Error.hs
Control/Monad/Fix.hs
Control/Monad/Identity.hs
Control/Monad/List.hs
Control/Monad/Monoid.hs
Control/Monad/RWS.hs
Control/Monad/Reader.hs
Control/Monad/ST.hs
Control/Monad/ST/Lazy.hs
Control/Monad/ST/Strict.hs
Control/Monad/State.hs
Control/Monad/Trans.hs
Control/Monad/Writer.hs
Control/Parallel.hs
Control/Parallel/Strategies.hs
Data/Array.hs
Data/Array/Base.hs
Data/Array/Diff.hs
Data/Array/IArray.hs
Data/Array/IO.hs
Data/Array/MArray.hs
Data/Array/ST.hs
Data/Array/Storable.hs
Data/Array/Unboxed.hs
Data/Bits.hs
Data/Bool.hs
Data/Char.hs
Data/Complex.hs
Data/Dynamic.hs
Data/Either.hs
Data/FiniteMap.hs
Data/Generics.hs
Data/IORef.hs
Data/Int.hs
Data/Ix.hs
Data/List.hs
Data/Maybe.hs
Data/PackedString.hs
Data/Ratio.hs
Data/STRef.hs
Data/Set.hs
Data/Tuple.hs
Data/Unique.hs
Data/Word.hs
Debug/QuickCheck.hs
Debug/QuickCheck/Batch.hs
Debug/QuickCheck/Poly.hs
Debug/QuickCheck/Utils.hs
Debug/Trace.hs
Foreign.hs
Foreign/C.hs
Foreign/C/Error.hs
Foreign/C/String.hs
Foreign/C/Types.hs
Foreign/C/TypesISO.hs
Foreign/ForeignPtr.hs
Foreign/Marshal/Alloc.hs
Foreign/Marshal/Array.hs
Foreign/Marshal/Error.hs
Foreign/Marshal/Utils.hs
Foreign/Ptr.hs
Foreign/StablePtr.hs
Foreign/Storable.hs
GHC/Exts.hs
GHC/Ptr.lhs
Numeric.hs
Prelude.hs
System/CPUTime.hsc
System/Cmd.hs
System/Console/GetOpt.hs
System/Directory.hs
System/Environment.hs
System/Exit.hs
System/IO.hs
System/IO/Error.hs
System/IO/Unsafe.hs
System/Info.hs
System/Locale.hs
System/Mem.hs
System/Mem/StableName.hs
System/Mem/Weak.hs
System/Random.hs
System/Time.hsc
Text/Html.hs
Text/Html/BlockTable.hs
Text/PrettyPrint.hs
Text/PrettyPrint/HughesPJ.hs
Text/Read.hs
Text/Regex.hs
Text/Regex/Posix.hsc
Text/Show.hs
Text/Show/Functions.hs

index 8e82663..6b3ec94 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Concurrent
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Concurrent.hs,v 1.5 2002/04/18 23:32:56 sof Exp $
+-- $Id: Concurrent.hs,v 1.6 2002/04/24 16:31:37 simonmar Exp $
 --
 -- A common interface to a collection of useful concurrency
 -- abstractions.
index 8e16596..a3b41de 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Concurrent.CVar
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: CVar.hs,v 1.1 2001/06/28 14:15:01 simonmar Exp $
+-- $Id: CVar.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $
 --
 -- Channel variables are one-element channels.
 --
index 29423e1..0992137 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Concurrent.Chan
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Chan.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: Chan.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $
 --
 -- Standard, unbounded channel abstraction.
 --
index 7832c2e..472063a 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Concurrent.MVar
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: MVar.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: MVar.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $
 --
 -- MVars: Synchronising variables
 --
index 2cc9f55..88a4462 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Concurrent.QSem
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: QSem.hs,v 1.2 2001/07/04 11:30:52 simonmar Exp $
+-- $Id: QSem.hs,v 1.3 2002/04/24 16:31:37 simonmar Exp $
 --
 -- General semaphores
 --
index da5aa44..c7a7fbc 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Concurrent.QSemN
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: QSemN.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: QSemN.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $
 --
 -- Quantity semaphores
 --
index e3d3341..8cd1915 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Concurrent.SampleVar
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: SampleVar.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: SampleVar.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $
 --
 -- Sample variables
 --
index 0248ff2..76b4d63 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Exception
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Exception.hs,v 1.6 2002/02/05 17:32:25 simonmar Exp $
+-- $Id: Exception.hs,v 1.7 2002/04/24 16:31:37 simonmar Exp $
 --
 -- The External API for exceptions.  The functions provided in this
 -- module allow catching of exceptions in the IO monad.
index d2e9908..7d6c978 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Monad
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Monad.hs,v 1.1 2001/06/28 14:15:01 simonmar Exp $
+-- $Id: Monad.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $
 --
 -----------------------------------------------------------------------------
 
index 541f6a6..f9855b3 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Monad.Cont
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Cont.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: Cont.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
 --
 -- Continuation monads.
 --
index 979ae35..e57a5b3 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Monad.Error
 -- Copyright   :  (c) Michael Weber <michael.weber@post.rwth-aachen.de>, 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable (reqruires multi-param type classes)
 --
--- $Id: Error.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: Error.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
 --
 -- The Error monad.
 --
index 3a0be32..4836db7 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Monad.Fix
 -- Copyright   :  (c) Andy Gill 2001,
 --               (c) Oregon Graduate Institute of Science and Technology, 2001
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Fix.hs,v 1.4 2002/03/22 10:20:24 simonmar Exp $
+-- $Id: Fix.hs,v 1.5 2002/04/24 16:31:38 simonmar Exp $
 --
 -- The Fix monad.
 --
index aee6f03..21056d3 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Monad.Identity
 -- Copyright   :  (c) Andy Gill 2001,
 --               (c) Oregon Graduate Institute of Science and Technology, 2001
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Identity.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: Identity.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
 --
 -- The Identity monad.
 --
index e6c7daa..3f7ee70 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Monad.List
 -- Copyright   :  (c) Andy Gill 2001,
 --               (c) Oregon Graduate Institute of Science and Technology, 2001
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable ( requires mulit-parameter type classes )
 --
--- $Id: List.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: List.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
 --
 -- The List monad.
 --
index e81b2be..98a538a 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Monad.Monoid
 -- Copyright   :  (c) Andy Gill 2001,
 --               (c) Oregon Graduate Institute of Science and Technology, 2001
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable ( requires mulit-parameter type classes )
 --
--- $Id: Monoid.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: Monoid.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
 --
 -- Declaration of the Monoid class,and instances for list and functions
 --
index 26d624d..e050eae 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Monad.RWS
 -- Copyright   :  (c) Andy Gill 2001,
 --               (c) Oregon Graduate Institute of Science and Technology, 2001
@@ -10,7 +10,7 @@
 -- Portability :  non-portable ( requires mulit-parameter type classes,
 --                              requires functional dependencies )
 --
--- $Id: RWS.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: RWS.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
 --
 -- Declaration of the MonadRWS class.
 --
index d03c446..223c296 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Monad.Reader
 -- Copyright   :  (c) Andy Gill 2001,
 --               (c) Oregon Graduate Institute of Science and Technology, 2001
@@ -10,7 +10,7 @@
 -- Portability :  non-portable ( requires mulit-parameter type classes,
 --                              requires functional dependencies )
 --
--- $Id: Reader.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: Reader.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
 --
 -- Declaration of the Monoid class,and instances for list and functions
 --
index dd7829c..6d19b9c 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Monad.ST
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable (requires universal quantification for runST)
 --
--- $Id: ST.hs,v 1.5 2001/12/21 15:07:21 simonmar Exp $
+-- $Id: ST.hs,v 1.6 2002/04/24 16:31:38 simonmar Exp $
 --
 -- The State Transformer Monad, ST
 --
index bb56e28..8b2f41b 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Monad.ST.Lazy
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  non-portable (requires universal quantification for runST)
 --
--- $Id: Lazy.hs,v 1.4 2002/01/02 14:40:09 simonmar Exp $
+-- $Id: Lazy.hs,v 1.5 2002/04/24 16:31:39 simonmar Exp $
 --
 -- This module presents an identical interface to Control.Monad.ST,
 -- but the underlying implementation of the state thread is lazy.
index d746f6d..72e5681 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Monad.ST.Strict
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  non-portable (requires universal quantification for runST)
 --
--- $Id: Strict.hs,v 1.2 2001/07/03 11:37:49 simonmar Exp $
+-- $Id: Strict.hs,v 1.3 2002/04/24 16:31:39 simonmar Exp $
 --
 -- The strict ST monad (identical to Control.Monad.ST)
 --
index b28d027..fef3ee8 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Monad.State
 -- Copyright   :  (c) Andy Gill 2001,
 --               (c) Oregon Graduate Institute of Science and Technology, 2001
@@ -10,7 +10,7 @@
 -- Portability :  non-portable ( requires mulit-parameter type classes,
 --                              requires functional dependencies )
 --
--- $Id: State.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: State.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
 --
 -- State monads.
 --
index 3766021..3e75ea1 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Monad.Trans
 -- Copyright   :  (c) Andy Gill 2001,
 --               (c) Oregon Graduate Institute of Science and Technology, 2001
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Trans.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: Trans.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
 --
 -- The MonadTrans class.
 --
index 96df130..898069c 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Monad.Writer
 -- Copyright   :  (c) Andy Gill 2001,
 --               (c) Oregon Graduate Institute of Science and Technology, 2001
@@ -10,7 +10,7 @@
 -- Portability :  non-portable ( requires mulit-parameter type classes,
 --                              requires functional dependencies )
 --
--- $Id: Writer.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: Writer.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
 --
 -- The MonadWriter class.
 --
index 1d6a126..e9b021b 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Parallel
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Parallel.hs,v 1.1 2001/06/28 14:15:01 simonmar Exp $
+-- $Id: Parallel.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $
 --
 -- Parallel Constructs
 --
index cad9aa3..d011eca 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Parallel.Strategies
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Strategies.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: Strategies.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $
 --
 -- Parallel strategy combinators
 --
@@ -16,7 +16,7 @@
 
 {-
 Time-stamp: <Wed Mar 21 2001 00:45:34 Stardate: [-30]6360.15 hwloidl>
-$Id: Strategies.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+$Id: Strategies.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $
 
 This module defines parallel strategy combinators
 
@@ -25,8 +25,8 @@ This module defines parallel strategy combinators
        Based on Version VII (1/5/96) `Strategies96' of type a -> ()
 
 Author:    $Author: simonmar $
-Date:      $Date: 2001/06/28 14:15:02 $
-Revision:  $Revision: 1.1 $
+Date:      $Date: 2002/04/24 16:31:39 $
+Revision:  $Revision: 1.2 $
 Source:    $Source: /srv/cvs/cvs.haskell.org/fptools/libraries/base/Control/Parallel/Strategies.hs,v $
 State:     $State: Exp $
 
@@ -50,6 +50,10 @@ The history of the Strategies module:
 
 Changelog:
 $Log: Strategies.hs,v $
+Revision 1.2  2002/04/24 16:31:39  simonmar
+Add the single character '|' to the header comment of each module so
+that Haddock will parse it as the module documentation.
+
 Revision 1.1  2001/06/28 14:15:02  simonmar
 First cut of the Haskell Core Libraries
 =======================================
@@ -277,8 +281,8 @@ declaration of @par@ and @seq@ despite renaming the imported versions.
 > infixl 6 $||, $|            -- strategic function application (seq and par)
 > infixl 9 .|, .||, -|, -||   -- strategic (inverse) function composition
 
-> strategy_version = "$Revision: 1.1 $"
-> strategy_id = "$Id: Strategies.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $"
+> strategy_version = "$Revision: 1.2 $"
+> strategy_id = "$Id: Strategies.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $"
 
 ------------------------------------------------------------------------------
                        Strategy Type, Application and Semantics              
index c13cc91..aadfdfb 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Array 
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Array.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: Array.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $
 --
 -- Basic non-strict arrays.
 --
index 4c23b39..7ec369c 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -monly-3-regs #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Array.Base
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Base.hs,v 1.6 2002/03/26 17:09:52 simonmar Exp $
+-- $Id: Base.hs,v 1.7 2002/04/24 16:31:43 simonmar Exp $
 --
 -- Basis for IArray and MArray.  Not intended for external consumption;
 -- use IArray or MArray instead.
index a0ff54e..5bcaba5 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Array.Diff
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Diff.hs,v 1.2 2002/01/02 14:40:10 simonmar Exp $
+-- $Id: Diff.hs,v 1.3 2002/04/24 16:31:43 simonmar Exp $
 --
 -- Functional arrays with constant-time update.
 --
index b97daee..dff19d5 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Array.IArray
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: IArray.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: IArray.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $
 --
 -- Overloaded immutable array class.
 --
index bd4ad93..e7fd228 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -#include "HsBase.h" #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Array.IO
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: IO.hs,v 1.6 2002/03/26 17:11:15 simonmar Exp $
+-- $Id: IO.hs,v 1.7 2002/04/24 16:31:43 simonmar Exp $
 --
 -- Mutable boxed/unboxed arrays in the IO monad.
 --
index c341dab..e77f4eb 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -monly-3-regs #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Array.MArray
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: MArray.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: MArray.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $
 --
 -- Class of mutable arrays, and operations on them.
 --
index 143f792..dd6b908 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Array.ST
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: ST.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: ST.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $
 --
 -- Mutable boxed/unboxed arrays in the ST monad.
 --
index 76d2dae..b59301e 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Array.Storable
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Storable.hs,v 1.2 2001/07/04 10:51:09 simonmar Exp $
+-- $Id: Storable.hs,v 1.3 2002/04/24 16:31:43 simonmar Exp $
 --
 -- A storable array is an IO-mutable array which stores its
 -- contents in a contiguous memory block living in the C
index b4a0ecf..508df4d 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Array.Unboxed
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Unboxed.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: Unboxed.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $
 --
 -- Unboxed immutable array type.
 --
index c68ec75..c280fe2 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Bits
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Bits.hs,v 1.4 2002/02/05 17:32:25 simonmar Exp $
+-- $Id: Bits.hs,v 1.5 2002/04/24 16:31:39 simonmar Exp $
 --
 -- Bitwise operations.
 --
index a5518be..181df1e 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Bool
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Bool.hs,v 1.2 2001/07/03 11:37:49 simonmar Exp $
+-- $Id: Bool.hs,v 1.3 2002/04/24 16:31:39 simonmar Exp $
 --
 -- The Bool type and related functions.
 --
index 9174f15..a4bf1af 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Char
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Char.hs,v 1.2 2002/04/11 12:03:43 simonpj Exp $
+-- $Id: Char.hs,v 1.3 2002/04/24 16:31:39 simonmar Exp $
 --
 -- The Char type and associated operations.
 --
index 8482e50..e0738f1 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Complex
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Complex.hs,v 1.2 2001/12/21 15:07:21 simonmar Exp $
+-- $Id: Complex.hs,v 1.3 2002/04/24 16:31:39 simonmar Exp $
 --
 -- Complex numbers.
 --
index 598dc39..209eea5 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Dynamic
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Dynamic.hs,v 1.5 2002/03/14 12:09:49 simonmar Exp $
+-- $Id: Dynamic.hs,v 1.6 2002/04/24 16:31:39 simonmar Exp $
 --
 -- The Dynamic interface provides basic support for dynamic types.
 -- 
index 20dfe47..bc93248 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Either
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Either.hs,v 1.3 2001/07/03 14:13:32 simonmar Exp $
+-- $Id: Either.hs,v 1.4 2002/04/24 16:31:39 simonmar Exp $
 --
 -- The Either type, and associated operations.
 --
index 025fcef..b0fafd3 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.FiniteMap
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: FiniteMap.hs,v 1.1 2001/08/17 12:44:54 simonmar Exp $
+-- $Id: FiniteMap.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $
 --
 -- A finite map implementation, derived from the paper:
 --        S Adams, "Efficient sets: a balancing act"
index b144a38..a2f6a87 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Generics
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Generics.hs,v 1.1 2001/07/04 11:06:39 simonmar Exp $
+-- $Id: Generics.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $
 --
 -- Data types for generic definitions.
 --
index 8d5ef77..d165380 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.IORef
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: IORef.hs,v 1.4 2002/01/02 14:40:09 simonmar Exp $
+-- $Id: IORef.hs,v 1.5 2002/04/24 16:31:39 simonmar Exp $
 --
 -- Mutable references in the IO monad.
 --
index d056134..8d8a921 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Int
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Int.hs,v 1.3 2002/03/14 12:09:49 simonmar Exp $
+-- $Id: Int.hs,v 1.4 2002/04/24 16:31:39 simonmar Exp $
 --
 -- Sized Integer types.
 --
index 5296e11..f7d41f3 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Ix
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Ix.hs,v 1.2 2001/12/21 15:07:21 simonmar Exp $
+-- $Id: Ix.hs,v 1.3 2002/04/24 16:31:39 simonmar Exp $
 --
 -- Class of index types.
 --
index ea2ff2a..2a37187 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.List
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: List.hs,v 1.3 2002/04/02 10:19:21 simonmar Exp $
+-- $Id: List.hs,v 1.4 2002/04/24 16:31:39 simonmar Exp $
 --
 -- Operations on lists.
 --
index 3f1ffad..36e684e 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Maybe
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Maybe.hs,v 1.3 2001/07/03 14:13:32 simonmar Exp $
+-- $Id: Maybe.hs,v 1.4 2002/04/24 16:31:39 simonmar Exp $
 --
 -- The Maybe type, and associated operations.
 --
index 2a315a2..cecb044 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.PackedString
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: PackedString.hs,v 1.3 2001/09/14 11:25:23 simonmar Exp $
+-- $Id: PackedString.hs,v 1.4 2002/04/24 16:31:39 simonmar Exp $
 --
 -- The PackedString type, and associated operations.
 --
index 42426ce..d71551e 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Ratio
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Ratio.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: Ratio.hs,v 1.2 2002/04/24 16:31:40 simonmar Exp $
 --
 -- Standard functions on rational numbers
 --
index c60b299..b3c4888 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.STRef
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable (requires non-portable module ST)
 --
--- $Id: STRef.hs,v 1.3 2002/03/04 17:25:36 panne Exp $
+-- $Id: STRef.hs,v 1.4 2002/04/24 16:31:40 simonmar Exp $
 --
 -- Mutable references in the ST monad.
 --
index 11f4b61..71f09c0 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Set
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Set.hs,v 1.1 2001/09/13 11:50:35 simonmar Exp $
+-- $Id: Set.hs,v 1.2 2002/04/24 16:31:40 simonmar Exp $
 --
 -- This implementation of sets sits squarely upon Data.FiniteMap.
 --
index d37642a..dc73a33 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Tuple
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Tuple.hs,v 1.2 2001/12/21 15:07:22 simonmar Exp $
+-- $Id: Tuple.hs,v 1.3 2002/04/24 16:31:42 simonmar Exp $
 --
 -- The tuple data types, and associated functions.
 --
index 97251ff..a1cbf6f 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Data.Unique
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Unique.hs,v 1.1 2001/07/04 10:48:39 simonmar Exp $
+-- $Id: Unique.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $
 --
 -- An infinite supply of unique objects, supporting ordering and equality.
 --
index b81a7d9..aaa7fd7 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Word.hs,v 1.3 2002/03/14 12:09:49 simonmar Exp $
+-- $Id: Word.hs,v 1.4 2002/04/24 16:31:43 simonmar Exp $
 --
 -- Sized unsigned integer types.
 --
index ccada06..bab6d2f 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Debug.QuickCheck
 -- Copyright   :  (c) Koen Claessen, John Hughes 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: QuickCheck.hs,v 1.1 2001/08/17 12:48:38 simonmar Exp $
+-- $Id: QuickCheck.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $
 --
 -- QuickCheck v.0.2
 -- DRAFT implementation; last update 000104.
index f5056f8..7b6373b 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Debug.QuickCheck.Batch
 -- Copyright   :  (c) Andy Gill 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable (uses Control.Exception, Control.Concurrent)
 --
--- $Id: Batch.hs,v 1.1 2001/08/17 12:48:38 simonmar Exp $
+-- $Id: Batch.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $
 --
 -- This is a batch driver for runing QuickCheck.
 --
index 495db61..4799d30 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Debug.QuickCheck.Poly
 -- Copyright   :  (c) Andy Gill 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable (uses Control.Exception, Control.Concurrent)
 --
--- $Id: Poly.hs,v 1.1 2002/02/11 12:28:04 simonmar Exp $
+-- $Id: Poly.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $
 --
 -- This is an attempt to emulate polymorphic types for the 
 -- purposes of testing by using abstract monomorphic types.
index a8c2df5..b353829 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Debug.QuickCheck.Utils
 -- Copyright   :  (c) Andy Gill 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Utils.hs,v 1.2 2001/12/21 15:07:22 simonmar Exp $
+-- $Id: Utils.hs,v 1.3 2002/04/24 16:31:43 simonmar Exp $
 --
 -- These are some general purpose utilities for use with QuickCheck.
 --
index 993a72e..79dcceb 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Debug.Trace
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Trace.hs,v 1.2 2002/04/24 16:01:51 simonmar Exp $
+-- $Id: Trace.hs,v 1.3 2002/04/24 16:31:43 simonmar Exp $
 --
 -- The trace function.
 --
index 1670110..41c56a6 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Foreign
 -- Copyright   :  (c) The FFI task force 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Foreign.hs,v 1.2 2001/07/03 11:37:49 simonmar Exp $
+-- $Id: Foreign.hs,v 1.3 2002/04/24 16:31:37 simonmar Exp $
 --
 -- A collection of data types, classes, and functions for interfacing
 -- with another programming language. This is only a convenience module
index f961b8f..937d8dd 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Foreign.C
 -- Copyright   :  (c) The FFI task force 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: C.hs,v 1.2 2001/07/03 11:37:50 simonmar Exp $
+-- $Id: C.hs,v 1.3 2002/04/24 16:31:44 simonmar Exp $
 --
 -- Bundles the C specific FFI library functionality
 --
index a908f0f..171d5b4 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude -#include "HsBase.h" #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Foreign.C.Error
 -- Copyright   :  (c) The FFI task force 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Error.hs,v 1.6 2002/02/07 11:13:30 simonmar Exp $
+-- $Id: Error.hs,v 1.7 2002/04/24 16:31:44 simonmar Exp $
 --
 -- C-specific Marshalling support: Handling of C "errno" error codes
 --
index 00344db..6f465e5 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Foreign.C.String
 -- Copyright   :  (c) The FFI task force 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: String.hs,v 1.4 2001/09/13 11:37:43 simonmar Exp $
+-- $Id: String.hs,v 1.5 2002/04/24 16:31:44 simonmar Exp $
 --
 -- Utilities for primitive marshaling
 --
index eaffa3c..5def8b9 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Foreign.C.Types
 -- Copyright   :  (c) The FFI task force 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Types.hs,v 1.3 2002/02/05 17:32:25 simonmar Exp $
+-- $Id: Types.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $
 --
 -- Mapping of C types to corresponding Haskell types. A cool hack...
 --
index 0ecffdb..742fc73 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Foreign.C.TypesISO
 -- Copyright   :  (c) The FFI task force 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: TypesISO.hs,v 1.3 2002/02/05 17:32:25 simonmar Exp $
+-- $Id: TypesISO.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $
 --
 -- A mapping of C types defined by the ISO C standard to corresponding Haskell
 -- types. Like CTypes, this is a cool hack...
index 5a02dca..a603587 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Foreign.ForeignPtr
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: ForeignPtr.hs,v 1.3 2001/07/31 16:35:29 simonmar Exp $
+-- $Id: ForeignPtr.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $
 --
 -- This module defines foreign pointers, i.e. addresses with associated
 -- finalizers.
index 706b4b0..eb4b04b 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Foreign.Marshal.Alloc
 -- Copyright   :  (c) The FFI task force 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Alloc.hs,v 1.5 2002/02/05 17:32:25 simonmar Exp $
+-- $Id: Alloc.hs,v 1.6 2002/04/24 16:31:44 simonmar Exp $
 --
 -- Marshalling support: basic routines for memory allocation
 --
index 7b75b23..152b475 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Foreign.Marshal.Array
 -- Copyright   :  (c) The FFI task force 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Array.hs,v 1.4 2002/02/05 17:32:25 simonmar Exp $
+-- $Id: Array.hs,v 1.5 2002/04/24 16:31:44 simonmar Exp $
 --
 -- Marshalling support: routines allocating, storing, and retrieving Haskell
 -- lists that are represented as arrays in the foreign language
index f65e055..5b43dfc 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Foreign.Marshal.Error
 -- Copyright   :  (c) The FFI task force 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Error.hs,v 1.2 2001/07/03 11:37:50 simonmar Exp $
+-- $Id: Error.hs,v 1.3 2002/04/24 16:31:44 simonmar Exp $
 --
 -- Marshalling support: Handling of common error conditions
 --
index b6864ca..5b21ca0 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Foreign.Marshal.Utils
 -- Copyright   :  (c) The FFI task force 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Utils.hs,v 1.3 2002/02/05 17:32:25 simonmar Exp $
+-- $Id: Utils.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $
 --
 -- Utilities for primitive marshaling
 --
index 7bbd4db..7d75e69 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Foreign.Ptr
 -- Copyright   :  (c) The FFI task force 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Ptr.hs,v 1.6 2002/03/20 15:38:36 simonmar Exp $
+-- $Id: Ptr.hs,v 1.7 2002/04/24 16:31:44 simonmar Exp $
 --
 -- Pointer types.
 --
index dea0a48..48acc57 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Foreign.StablePtr
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: StablePtr.hs,v 1.3 2002/03/14 12:09:50 simonmar Exp $
+-- $Id: StablePtr.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $
 --
 -- Stable pointers.
 --
index 755b383..869916d 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Foreign.Storable
 -- Copyright   :  (c) The FFI task force 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Storable.hs,v 1.3 2002/02/05 17:32:25 simonmar Exp $
+-- $Id: Storable.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $
 --
 -- A class for primitive marshaling
 --
index 699edbf..4041fda 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  GHC.Exts
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Exts.hs,v 1.4 2002/04/11 12:03:44 simonpj Exp $
+-- $Id: Exts.hs,v 1.5 2002/04/24 16:31:45 simonmar Exp $
 --
 -- GHC Extensions: this is the Approved Way to get at GHC-specific stuff.
 --
index dc6186a..0bf1520 100644 (file)
@@ -1,8 +1,8 @@
 -----------------------------------------------------------------------------
--- $Id: Ptr.lhs,v 1.2 2001/12/21 15:07:25 simonmar Exp $
+-- $Id: Ptr.lhs,v 1.3 2002/04/24 16:31:45 simonmar Exp $
 -- 
 -- (c) The FFI Task Force, 2000
--- 
+-- |
 -- Module GHC.Ptr
 
 \begin{code}
index 78af5b0..01036b2 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Numeric
 -- Copyright   :  (c) The University of Glasgow 2002
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Numeric.hs,v 1.6 2002/04/11 12:03:43 simonpj Exp $
+-- $Id: Numeric.hs,v 1.7 2002/04/24 16:31:37 simonmar Exp $
 --
 -- Odds and ends, mostly functions for reading and showing
 -- RealFloat-like kind of values.
index ffdd4eb..ccbf617 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Prelude
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Prelude.hs,v 1.2 2001/07/03 11:37:49 simonmar Exp $
+-- $Id: Prelude.hs,v 1.3 2002/04/24 16:31:37 simonmar Exp $
 --
 -- Standard module imported by default into Haskell modules.
 --
index 25098fe..e7de787 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.CPUTime
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: CPUTime.hsc,v 1.7 2002/04/24 16:03:39 simonmar Exp $
+-- $Id: CPUTime.hsc,v 1.8 2002/04/24 16:31:45 simonmar Exp $
 --
 -- The standard CPUTime library.
 --
index 7f7ca20..6a47db0 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.Cmd
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Cmd.hs,v 1.2 2002/04/24 16:09:12 simonmar Exp $
+-- $Id: Cmd.hs,v 1.3 2002/04/24 16:31:45 simonmar Exp $
 --
 -- Executing a command.
 --
index 1aa1b7e..2456df6 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.Console.GetOpt
 -- Copyright   :  (c) Sven Panne Oct. 1996 (small changes Dec. 1997)
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: GetOpt.hs,v 1.2 2001/07/04 11:30:52 simonmar Exp $
+-- $Id: GetOpt.hs,v 1.3 2002/04/24 16:31:45 simonmar Exp $
 --
 -- A Haskell port of GNU's getopt library 
 --
index b6047a9..b860958 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.Directory
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Directory.hs,v 1.2 2002/04/24 15:47:10 sof Exp $
+-- $Id: Directory.hs,v 1.3 2002/04/24 16:31:45 simonmar Exp $
 --
 -- System-independent interface to directory manipulation.
 --
index 76005a9..117b7db 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.Environment
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Environment.hs,v 1.5 2002/04/24 16:09:22 simonmar Exp $
+-- $Id: Environment.hs,v 1.6 2002/04/24 16:31:45 simonmar Exp $
 --
 -- Miscellaneous information about the system environment.
 --
index 28597ad..6d486c9 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.Exit
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Exit.hs,v 1.1 2001/06/28 14:15:04 simonmar Exp $
+-- $Id: Exit.hs,v 1.2 2002/04/24 16:31:45 simonmar Exp $
 --
 -- Exiting the program.
 --
index b28e1dc..b034132 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.IO
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: IO.hs,v 1.6 2002/03/14 12:09:52 simonmar Exp $
+-- $Id: IO.hs,v 1.7 2002/04/24 16:31:45 simonmar Exp $
 --
 -- The standard IO library.
 --
index 04bf6c6..d18a7c5 100644 (file)
@@ -1,7 +1,7 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.IO.Error
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -10,7 +10,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Error.hs,v 1.3 2002/03/27 17:55:26 simonmar Exp $
+-- $Id: Error.hs,v 1.4 2002/04/24 16:31:45 simonmar Exp $
 --
 -- Standard IO Errors.
 --
index ebe4463..2f98633 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.IO.Unsafe
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Unsafe.hs,v 1.1 2001/06/28 14:15:04 simonmar Exp $
+-- $Id: Unsafe.hs,v 1.2 2002/04/24 16:31:45 simonmar Exp $
 --
 -- "Unsafe" IO operations.
 --
index 9b61867..adcfe79 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.Info
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Info.hs,v 1.2 2001/07/03 11:37:50 simonmar Exp $
+-- $Id: Info.hs,v 1.3 2002/04/24 16:31:45 simonmar Exp $
 --
 -- Misc information about the characteristics of the host 
 -- architecture/machine lucky enough to run your program.
index cc5a34e..e58335f 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.Locale
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Locale.hs,v 1.1 2001/06/28 14:15:04 simonmar Exp $
+-- $Id: Locale.hs,v 1.2 2002/04/24 16:31:45 simonmar Exp $
 --
 -- Operations for defining locale-specific date and time formats.
 --
index 13dcbcb..984db4e 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.Mem
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Mem.hs,v 1.3 2002/04/24 16:09:35 simonmar Exp $
+-- $Id: Mem.hs,v 1.4 2002/04/24 16:31:45 simonmar Exp $
 --
 -- Memory-related system things.
 --
index c40704d..f52be1d 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.Mem.StableName
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: StableName.hs,v 1.3 2001/12/21 15:07:26 simonmar Exp $
+-- $Id: StableName.hs,v 1.4 2002/04/24 16:31:45 simonmar Exp $
 --
 -- Giving an object a stable (GC-invariant) name.
 --
index 6a092e0..6a25986 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.Mem.Weak
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Weak.hs,v 1.2 2001/09/13 11:36:52 simonmar Exp $
+-- $Id: Weak.hs,v 1.3 2002/04/24 16:31:45 simonmar Exp $
 --
 -- Weak references, weak pairs, weak pointers, and finalizers.
 --
index 0b5286b..59ff300 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.Random
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Random.hs,v 1.3 2002/04/11 12:03:44 simonpj Exp $
+-- $Id: Random.hs,v 1.4 2002/04/24 16:31:45 simonmar Exp $
 --
 -- Random numbers.
 --
index 9d696cd..4db1d61 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  System.Time
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Time.hsc,v 1.11 2002/03/26 21:07:06 sof Exp $
+-- $Id: Time.hsc,v 1.12 2002/04/24 16:31:45 simonmar Exp $
 --
 -- The standard Time library.
 --
index a4d7f46..2967c39 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Text.Html
 -- Copyright   :  (c) Andy Gill, and the Oregon Graduate Institute of 
 --               Science and Technology, 1999-2001
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Html.hs,v 1.1 2001/08/01 13:53:07 simonmar Exp $
+-- $Id: Html.hs,v 1.2 2002/04/24 16:31:46 simonmar Exp $
 --
 -- An Html combinator library
 --
index 8211c4e..c5891f9 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Text.Html.BlockTable
 -- Copyright   :  (c) Andy Gill, and the Oregon Graduate Institute of 
 --               Science and Technology, 1999-2001
@@ -9,7 +9,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: BlockTable.hs,v 1.1 2001/08/01 13:53:07 simonmar Exp $
+-- $Id: BlockTable.hs,v 1.2 2002/04/24 16:31:46 simonmar Exp $
 --
 -- An Html combinator library
 --
index 34b8b66..7f730ca 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Text.PrettyPrint
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: PrettyPrint.hs,v 1.2 2001/09/13 11:39:14 simonmar Exp $
+-- $Id: PrettyPrint.hs,v 1.3 2002/04/24 16:31:46 simonmar Exp $
 --
 -- Re-export of Text.PrettyPrint.HughesPJ to provide a default
 -- pretty-printing library.  Marked experimental at the moment so we
index 939ab1d..8b77da8 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Text.PrettyPrint.HughesPJ
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: HughesPJ.hs,v 1.1 2001/08/17 12:46:16 simonmar Exp $
+-- $Id: HughesPJ.hs,v 1.2 2002/04/24 16:31:47 simonmar Exp $
 --
 -- John Hughes's and Simon Peyton Jones's Pretty Printer Combinators
 -- 
index 47813eb..e0c1d24 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Text.Read
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Read.hs,v 1.1 2001/06/28 14:15:04 simonmar Exp $
+-- $Id: Read.hs,v 1.2 2002/04/24 16:31:46 simonmar Exp $
 --
 -- Exiting the program.
 --
index c7731d2..43a73a3 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Text.Regex
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable (only on platforms that provide a regex lib)
 --
--- $Id: Regex.hs,v 1.1 2001/08/02 11:20:50 simonmar Exp $
+-- $Id: Regex.hs,v 1.2 2002/04/24 16:31:46 simonmar Exp $
 --
 -- Regular expression matching.
 -- Uses the POSIX regular expression interface in Text.Regex.Posix for now.
index 64275c6..1035518 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Text.Regex.Posix
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable (only on platforms that provide POSIX regexps)
 --
--- $Id: Posix.hsc,v 1.6 2002/02/16 18:04:28 simonmar Exp $
+-- $Id: Posix.hsc,v 1.7 2002/04/24 16:31:47 simonmar Exp $
 --
 -- Interface to the POSIX regular expression library.
 -- ToDo: should have an interface using PackedStrings.
index 17e9f44..87597c0 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Text.Show
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Show.hs,v 1.2 2001/07/04 12:06:33 simonmar Exp $
+-- $Id: Show.hs,v 1.3 2002/04/24 16:31:46 simonmar Exp $
 --
 -- The Show class and associated functions.
 --
index b246c44..5b85b4c 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Text.Show.Functions
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Functions.hs,v 1.1 2001/06/28 14:15:04 simonmar Exp $
+-- $Id: Functions.hs,v 1.2 2002/04/24 16:31:47 simonmar Exp $
 --
 -- Optional instance of Text.Show.Show for functions.
 --