[project @ 2002-04-26 13:34:05 by simonmar]
authorsimonmar <unknown>
Fri, 26 Apr 2002 13:34:10 +0000 (13:34 +0000)
committersimonmar <unknown>
Fri, 26 Apr 2002 13:34:10 +0000 (13:34 +0000)
Remove \$Id\$ from all files: it isn't particularly useful (see
previous discussion on cvs-ghc@haskell.org), and it confuses Haddock.

100 files changed:
Control/Arrow.hs
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
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/Posix.hsc
Text/Show.hs
Text/Show/Functions.hs

index 34783e0..35cc00d 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Arrow.hs,v 1.2 2002/04/24 17:57:55 ross Exp $
---
 -- Basic arrow definitions, based on
 --     /Generalising Monads to Arrows/, by John Hughes,
 --     /Science of Computer Programming/ 37, pp67-111, May 2000.
index 6b3ec94..2ef83ae 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $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 a3b41de..ba465d2 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: CVar.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $
---
 -- Channel variables are one-element channels.
 --
 -----------------------------------------------------------------------------
index 0992137..d6c1107 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Chan.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $
---
 -- Standard, unbounded channel abstraction.
 --
 -----------------------------------------------------------------------------
index 472063a..b246bf8 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: MVar.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $
---
 -- MVars: Synchronising variables
 --
 -----------------------------------------------------------------------------
index 88a4462..d439a8a 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: QSem.hs,v 1.3 2002/04/24 16:31:37 simonmar Exp $
---
 -- General semaphores
 --
 -----------------------------------------------------------------------------
index c7a7fbc..59e5e39 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: QSemN.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $
---
 -- Quantity semaphores
 --
 -----------------------------------------------------------------------------
index 8cd1915..47742eb 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: SampleVar.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $
---
 -- Sample variables
 --
 -----------------------------------------------------------------------------
index 76b4d63..29aa8d3 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $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 7d6c978..aee36a2 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Monad.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $
---
 -----------------------------------------------------------------------------
 
 module Control.Monad
index f9855b3..eb3f65c 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Cont.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
---
 -- Continuation monads.
 --
 -----------------------------------------------------------------------------
index e57a5b3..6f3967a 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable (reqruires multi-param type classes)
 --
--- $Id: Error.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
---
 -- The Error monad.
 --
 -- Rendered by Michael Weber <michael.weber@post.rwth-aachen.de>,
index 4836db7..1122588 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Fix.hs,v 1.5 2002/04/24 16:31:38 simonmar Exp $
---
 -- The Fix monad.
 --
 --       Inspired by the paper:
index 21056d3..e86da0b 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Identity.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
---
 -- The Identity monad.
 --
 --       Inspired by the paper:
index 3f7ee70..0c2cb22 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable ( requires mulit-parameter type classes )
 --
--- $Id: List.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
---
 -- The List monad.
 --
 -----------------------------------------------------------------------------
index 98a538a..23b10b3 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable ( requires mulit-parameter type classes )
 --
--- $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
 --
 --       Inspired by the paper
index e050eae..a494ef0 100644 (file)
@@ -10,8 +10,6 @@
 -- Portability :  non-portable ( requires mulit-parameter type classes,
 --                              requires functional dependencies )
 --
--- $Id: RWS.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
---
 -- Declaration of the MonadRWS class.
 --
 --       Inspired by the paper
index 223c296..8957404 100644 (file)
@@ -10,8 +10,6 @@
 -- Portability :  non-portable ( requires mulit-parameter type classes,
 --                              requires functional dependencies )
 --
--- $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
 --
 --       Inspired by the paper
index 6d19b9c..02d8d15 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable (requires universal quantification for runST)
 --
--- $Id: ST.hs,v 1.6 2002/04/24 16:31:38 simonmar Exp $
---
 -- The State Transformer Monad, ST
 --
 -----------------------------------------------------------------------------
index 8b2f41b..ea30d20 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  non-portable (requires universal quantification for runST)
 --
--- $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 72e5681..72f55e1 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  non-portable (requires universal quantification for runST)
 --
--- $Id: Strict.hs,v 1.3 2002/04/24 16:31:39 simonmar Exp $
---
 -- The strict ST monad (identical to Control.Monad.ST)
 --
 -----------------------------------------------------------------------------
index fef3ee8..878b83f 100644 (file)
@@ -10,8 +10,6 @@
 -- Portability :  non-portable ( requires mulit-parameter type classes,
 --                              requires functional dependencies )
 --
--- $Id: State.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
---
 -- State monads.
 --
 --       Inspired by the paper
index 3e75ea1..81ff397 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Trans.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
---
 -- The MonadTrans class.
 --
 --       Inspired by the paper
index 898069c..e79abb9 100644 (file)
@@ -10,8 +10,6 @@
 -- Portability :  non-portable ( requires mulit-parameter type classes,
 --                              requires functional dependencies )
 --
--- $Id: Writer.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $
---
 -- The MonadWriter class.
 --
 --       Inspired by the paper
index e9b021b..ded89d9 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Parallel.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $
---
 -- Parallel Constructs
 --
 -----------------------------------------------------------------------------
index d011eca..b52f6aa 100644 (file)
@@ -8,15 +8,13 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Strategies.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $
---
 -- Parallel strategy combinators
 --
 -----------------------------------------------------------------------------
 
 {-
 Time-stamp: <Wed Mar 21 2001 00:45:34 Stardate: [-30]6360.15 hwloidl>
-$Id: Strategies.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $
+$Id: Strategies.hs,v 1.3 2002/04/26 13:34:06 simonmar Exp $
 
 This module defines parallel strategy combinators
 
@@ -25,8 +23,8 @@ This module defines parallel strategy combinators
        Based on Version VII (1/5/96) `Strategies96' of type a -> ()
 
 Author:    $Author: simonmar $
-Date:      $Date: 2002/04/24 16:31:39 $
-Revision:  $Revision: 1.2 $
+Date:      $Date: 2002/04/26 13:34:06 $
+Revision:  $Revision: 1.3 $
 Source:    $Source: /srv/cvs/cvs.haskell.org/fptools/libraries/base/Control/Parallel/Strategies.hs,v $
 State:     $State: Exp $
 
@@ -50,6 +48,10 @@ The history of the Strategies module:
 
 Changelog:
 $Log: Strategies.hs,v $
+Revision 1.3  2002/04/26 13:34:06  simonmar
+Remove \$Id\$ from all files: it isn't particularly useful (see
+previous discussion on cvs-ghc@haskell.org), and it confuses Haddock.
+
 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.
@@ -281,8 +283,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.2 $"
-> strategy_id = "$Id: Strategies.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $"
+> strategy_version = "$Revision: 1.3 $"
+> strategy_id = "$Id: Strategies.hs,v 1.3 2002/04/26 13:34:06 simonmar Exp $"
 
 ------------------------------------------------------------------------------
                        Strategy Type, Application and Semantics              
index aadfdfb..2cde6c9 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Array.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $
---
 -- Basic non-strict arrays.
 --
 -----------------------------------------------------------------------------
index 7ec369c..a1b4c3d 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $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 5bcaba5..9c65e6c 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Diff.hs,v 1.3 2002/04/24 16:31:43 simonmar Exp $
---
 -- Functional arrays with constant-time update.
 --
 -----------------------------------------------------------------------------
index dff19d5..1c415cd 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: IArray.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $
---
 -- Overloaded immutable array class.
 --
 -----------------------------------------------------------------------------
index e7fd228..b47e147 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: IO.hs,v 1.7 2002/04/24 16:31:43 simonmar Exp $
---
 -- Mutable boxed/unboxed arrays in the IO monad.
 --
 -----------------------------------------------------------------------------
index e77f4eb..4e21479 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: MArray.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $
---
 -- Class of mutable arrays, and operations on them.
 --
 -----------------------------------------------------------------------------
index dd6b908..d8c3028 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: ST.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $
---
 -- Mutable boxed/unboxed arrays in the ST monad.
 --
 -----------------------------------------------------------------------------
index b59301e..8c6fdf3 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $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
 -- heap. Elements are stored according to the class Storable.
index 508df4d..3eb01fe 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Unboxed.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $
---
 -- Unboxed immutable array type.
 --
 -----------------------------------------------------------------------------
index c280fe2..a72cf89 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Bits.hs,v 1.5 2002/04/24 16:31:39 simonmar Exp $
---
 -- Bitwise operations.
 --
 -----------------------------------------------------------------------------
index 181df1e..e681d18 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Bool.hs,v 1.3 2002/04/24 16:31:39 simonmar Exp $
---
 -- The Bool type and related functions.
 --
 -----------------------------------------------------------------------------
index a4bf1af..e7d7b72 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Char.hs,v 1.3 2002/04/24 16:31:39 simonmar Exp $
---
 -- The Char type and associated operations.
 --
 -----------------------------------------------------------------------------
index e0738f1..f53f4a7 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Complex.hs,v 1.3 2002/04/24 16:31:39 simonmar Exp $
---
 -- Complex numbers.
 --
 -----------------------------------------------------------------------------
index 209eea5..13e3550 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Dynamic.hs,v 1.6 2002/04/24 16:31:39 simonmar Exp $
---
 -- The Dynamic interface provides basic support for dynamic types.
 -- 
 -- Operations for injecting values of arbitrary type into
index bc93248..fa9648c 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Either.hs,v 1.4 2002/04/24 16:31:39 simonmar Exp $
---
 -- The Either type, and associated operations.
 --
 -----------------------------------------------------------------------------
index b0fafd3..a44bb36 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $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"
 --        Journal of functional programming 3(4) Oct 1993, pp553-562
index a2f6a87..82a08c8 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Generics.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $
---
 -- Data types for generic definitions.
 --
 -----------------------------------------------------------------------------
index d165380..dec5906 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: IORef.hs,v 1.5 2002/04/24 16:31:39 simonmar Exp $
---
 -- Mutable references in the IO monad.
 --
 -----------------------------------------------------------------------------
index 8d8a921..553704a 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Int.hs,v 1.4 2002/04/24 16:31:39 simonmar Exp $
---
 -- Sized Integer types.
 --
 -----------------------------------------------------------------------------
index f7d41f3..d2022ed 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Ix.hs,v 1.3 2002/04/24 16:31:39 simonmar Exp $
---
 -- Class of index types.
 --
 -----------------------------------------------------------------------------
index 2a37187..069a31a 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: List.hs,v 1.4 2002/04/24 16:31:39 simonmar Exp $
---
 -- Operations on lists.
 --
 -----------------------------------------------------------------------------
index 36e684e..d0b5c18 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Maybe.hs,v 1.4 2002/04/24 16:31:39 simonmar Exp $
---
 -- The Maybe type, and associated operations.
 --
 -----------------------------------------------------------------------------
index cecb044..cc5240e 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: PackedString.hs,v 1.4 2002/04/24 16:31:39 simonmar Exp $
---
 -- The PackedString type, and associated operations.
 --
 -- Original GHC implementation by Bryan O'Sullivan, 
index d71551e..4462c44 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Ratio.hs,v 1.2 2002/04/24 16:31:40 simonmar Exp $
---
 -- Standard functions on rational numbers
 --
 -----------------------------------------------------------------------------
index b3c4888..deaa209 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable (requires non-portable module ST)
 --
--- $Id: STRef.hs,v 1.4 2002/04/24 16:31:40 simonmar Exp $
---
 -- Mutable references in the ST monad.
 --
 -----------------------------------------------------------------------------
index 71f09c0..556bbc1 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Set.hs,v 1.2 2002/04/24 16:31:40 simonmar Exp $
---
 -- This implementation of sets sits squarely upon Data.FiniteMap.
 --
 -----------------------------------------------------------------------------
index dc73a33..735a12a 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Tuple.hs,v 1.3 2002/04/24 16:31:42 simonmar Exp $
---
 -- The tuple data types, and associated functions.
 --
 -----------------------------------------------------------------------------
index a1cbf6f..3e093d3 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $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 aaa7fd7..0a8e512 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Word.hs,v 1.4 2002/04/24 16:31:43 simonmar Exp $
---
 -- Sized unsigned integer types.
 --
 -----------------------------------------------------------------------------
index bab6d2f..7bf87f2 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: QuickCheck.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $
---
 -- QuickCheck v.0.2
 -- DRAFT implementation; last update 000104.
 -- Koen Claessen, John Hughes.
index 7b6373b..66b0109 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable (uses Control.Exception, Control.Concurrent)
 --
--- $Id: Batch.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $
---
 -- This is a batch driver for runing QuickCheck.
 --
 -----------------------------------------------------------------------------
index 4799d30..82bda15 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable (uses Control.Exception, Control.Concurrent)
 --
--- $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 b353829..4705615 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $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 79dcceb..08d2fc1 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Trace.hs,v 1.3 2002/04/24 16:31:43 simonmar Exp $
---
 -- The trace function.
 --
 -----------------------------------------------------------------------------
index 41c56a6..9c3d045 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $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
 -- in the future, but currently it has the additional task of hiding
index 937d8dd..fb6d10f 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: C.hs,v 1.3 2002/04/24 16:31:44 simonmar Exp $
---
 -- Bundles the C specific FFI library functionality
 --
 -----------------------------------------------------------------------------
index 171d5b4..c667412 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $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 6f465e5..d5463a0 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: String.hs,v 1.5 2002/04/24 16:31:44 simonmar Exp $
---
 -- Utilities for primitive marshaling
 --
 -----------------------------------------------------------------------------
index 5def8b9..3e2905a 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $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 742fc73..490a484 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $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 a603587..43c3325 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $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 eb4b04b..d02ef75 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Alloc.hs,v 1.6 2002/04/24 16:31:44 simonmar Exp $
---
 -- Marshalling support: basic routines for memory allocation
 --
 -----------------------------------------------------------------------------
index 152b475..55b9c11 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $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 5b43dfc..1020f8a 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Error.hs,v 1.3 2002/04/24 16:31:44 simonmar Exp $
---
 -- Marshalling support: Handling of common error conditions
 --
 -----------------------------------------------------------------------------
index 5b21ca0..c8a5f74 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Utils.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $
---
 -- Utilities for primitive marshaling
 --
 -----------------------------------------------------------------------------
index 7d75e69..0544486 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Ptr.hs,v 1.7 2002/04/24 16:31:44 simonmar Exp $
---
 -- Pointer types.
 --
 -----------------------------------------------------------------------------
index 48acc57..1b169d0 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: StablePtr.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $
---
 -- Stable pointers.
 --
 -----------------------------------------------------------------------------
index 869916d..90b655d 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Storable.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $
---
 -- A class for primitive marshaling
 --
 -----------------------------------------------------------------------------
index 01036b2..3fc52fc 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $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 ccbf617..002f0a7 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Prelude.hs,v 1.3 2002/04/24 16:31:37 simonmar Exp $
---
 -- Standard module imported by default into Haskell modules.
 --
 -----------------------------------------------------------------------------
index e7de787..e5a8a45 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: CPUTime.hsc,v 1.8 2002/04/24 16:31:45 simonmar Exp $
---
 -- The standard CPUTime library.
 --
 -----------------------------------------------------------------------------
index 6a47db0..14300be 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Cmd.hs,v 1.3 2002/04/24 16:31:45 simonmar Exp $
---
 -- Executing a command.
 --
 -----------------------------------------------------------------------------
index 2456df6..ca32286 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: GetOpt.hs,v 1.3 2002/04/24 16:31:45 simonmar Exp $
---
 -- A Haskell port of GNU's getopt library 
 --
 -----------------------------------------------------------------------------
index b860958..63d4319 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Directory.hs,v 1.3 2002/04/24 16:31:45 simonmar Exp $
---
 -- System-independent interface to directory manipulation.
 --
 -----------------------------------------------------------------------------
index 117b7db..4215af6 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Environment.hs,v 1.6 2002/04/24 16:31:45 simonmar Exp $
---
 -- Miscellaneous information about the system environment.
 --
 -----------------------------------------------------------------------------
index 6d486c9..0570c82 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Exit.hs,v 1.2 2002/04/24 16:31:45 simonmar Exp $
---
 -- Exiting the program.
 --
 -----------------------------------------------------------------------------
index b034132..eb080fc 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: IO.hs,v 1.7 2002/04/24 16:31:45 simonmar Exp $
---
 -- The standard IO library.
 --
 -----------------------------------------------------------------------------
index d18a7c5..357d50c 100644 (file)
@@ -10,8 +10,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Error.hs,v 1.4 2002/04/24 16:31:45 simonmar Exp $
---
 -- Standard IO Errors.
 --
 -----------------------------------------------------------------------------
index 2f98633..db67a20 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Unsafe.hs,v 1.2 2002/04/24 16:31:45 simonmar Exp $
---
 -- "Unsafe" IO operations.
 --
 -----------------------------------------------------------------------------
index adcfe79..fce5b43 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $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 e58335f..cdef8ee 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Locale.hs,v 1.2 2002/04/24 16:31:45 simonmar Exp $
---
 -- Operations for defining locale-specific date and time formats.
 --
 -----------------------------------------------------------------------------
index 984db4e..2bac612 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Mem.hs,v 1.4 2002/04/24 16:31:45 simonmar Exp $
---
 -- Memory-related system things.
 --
 -----------------------------------------------------------------------------
index f52be1d..c26738c 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: StableName.hs,v 1.4 2002/04/24 16:31:45 simonmar Exp $
---
 -- Giving an object a stable (GC-invariant) name.
 --
 -----------------------------------------------------------------------------
index 6a25986..4d75b31 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Weak.hs,v 1.3 2002/04/24 16:31:45 simonmar Exp $
---
 -- Weak references, weak pairs, weak pointers, and finalizers.
 --
 -----------------------------------------------------------------------------
index 59ff300..27fb7aa 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Random.hs,v 1.4 2002/04/24 16:31:45 simonmar Exp $
---
 -- Random numbers.
 --
 -----------------------------------------------------------------------------
index 4db1d61..9bf935e 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Time.hsc,v 1.12 2002/04/24 16:31:45 simonmar Exp $
---
 -- The standard Time library.
 --
 -----------------------------------------------------------------------------
index 2967c39..cbb1998 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: Html.hs,v 1.2 2002/04/24 16:31:46 simonmar Exp $
---
 -- An Html combinator library
 --
 -----------------------------------------------------------------------------
index c5891f9..ddb4b58 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: BlockTable.hs,v 1.2 2002/04/24 16:31:46 simonmar Exp $
---
 -- An Html combinator library
 --
 -----------------------------------------------------------------------------
index 7f730ca..00a3b57 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $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
 -- can change the default later if necessary.
index 8b77da8..0bcfbbb 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $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
 -- 
 -- Based on "The Design of a Pretty-printing Library"
index e0c1d24..cc028b7 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Read.hs,v 1.2 2002/04/24 16:31:46 simonmar Exp $
---
 -- Exiting the program.
 --
 -----------------------------------------------------------------------------
index 1035518..8c84dbd 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  experimental
 -- Portability :  non-portable (only on platforms that provide POSIX regexps)
 --
--- $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 87597c0..6c5d20d 100644 (file)
@@ -9,8 +9,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Show.hs,v 1.3 2002/04/24 16:31:46 simonmar Exp $
---
 -- The Show class and associated functions.
 --
 -----------------------------------------------------------------------------
index 5b85b4c..5d5c914 100644 (file)
@@ -8,8 +8,6 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: Functions.hs,v 1.2 2002/04/24 16:31:47 simonmar Exp $
---
 -- Optional instance of Text.Show.Show for functions.
 --
 -----------------------------------------------------------------------------