From 746ef6a7fd71bb1e9ebe3cd107c5f9f79f3b7a68 Mon Sep 17 00:00:00 2001 From: simonmar Date: Fri, 26 Apr 2002 13:34:10 +0000 Subject: [PATCH 1/1] [project @ 2002-04-26 13:34:05 by simonmar] Remove \$Id\$ from all files: it isn't particularly useful (see previous discussion on cvs-ghc@haskell.org), and it confuses Haddock. --- Control/Arrow.hs | 2 -- Control/Concurrent.hs | 2 -- Control/Concurrent/CVar.hs | 2 -- Control/Concurrent/Chan.hs | 2 -- Control/Concurrent/MVar.hs | 2 -- Control/Concurrent/QSem.hs | 2 -- Control/Concurrent/QSemN.hs | 2 -- Control/Concurrent/SampleVar.hs | 2 -- Control/Exception.hs | 2 -- Control/Monad.hs | 2 -- Control/Monad/Cont.hs | 2 -- Control/Monad/Error.hs | 2 -- Control/Monad/Fix.hs | 2 -- Control/Monad/Identity.hs | 2 -- Control/Monad/List.hs | 2 -- Control/Monad/Monoid.hs | 2 -- Control/Monad/RWS.hs | 2 -- Control/Monad/Reader.hs | 2 -- Control/Monad/ST.hs | 2 -- Control/Monad/ST/Lazy.hs | 2 -- Control/Monad/ST/Strict.hs | 2 -- Control/Monad/State.hs | 2 -- Control/Monad/Trans.hs | 2 -- Control/Monad/Writer.hs | 2 -- Control/Parallel.hs | 2 -- Control/Parallel/Strategies.hs | 16 +++++++++------- Data/Array.hs | 2 -- Data/Array/Base.hs | 2 -- Data/Array/Diff.hs | 2 -- Data/Array/IArray.hs | 2 -- Data/Array/IO.hs | 2 -- Data/Array/MArray.hs | 2 -- Data/Array/ST.hs | 2 -- Data/Array/Storable.hs | 2 -- Data/Array/Unboxed.hs | 2 -- Data/Bits.hs | 2 -- Data/Bool.hs | 2 -- Data/Char.hs | 2 -- Data/Complex.hs | 2 -- Data/Dynamic.hs | 2 -- Data/Either.hs | 2 -- Data/FiniteMap.hs | 2 -- Data/Generics.hs | 2 -- Data/IORef.hs | 2 -- Data/Int.hs | 2 -- Data/Ix.hs | 2 -- Data/List.hs | 2 -- Data/Maybe.hs | 2 -- Data/PackedString.hs | 2 -- Data/Ratio.hs | 2 -- Data/STRef.hs | 2 -- Data/Set.hs | 2 -- Data/Tuple.hs | 2 -- Data/Unique.hs | 2 -- Data/Word.hs | 2 -- Debug/QuickCheck.hs | 2 -- Debug/QuickCheck/Batch.hs | 2 -- Debug/QuickCheck/Poly.hs | 2 -- Debug/QuickCheck/Utils.hs | 2 -- Debug/Trace.hs | 2 -- Foreign.hs | 2 -- Foreign/C.hs | 2 -- Foreign/C/Error.hs | 2 -- Foreign/C/String.hs | 2 -- Foreign/C/Types.hs | 2 -- Foreign/C/TypesISO.hs | 2 -- Foreign/ForeignPtr.hs | 2 -- Foreign/Marshal/Alloc.hs | 2 -- Foreign/Marshal/Array.hs | 2 -- Foreign/Marshal/Error.hs | 2 -- Foreign/Marshal/Utils.hs | 2 -- Foreign/Ptr.hs | 2 -- Foreign/StablePtr.hs | 2 -- Foreign/Storable.hs | 2 -- Numeric.hs | 2 -- Prelude.hs | 2 -- System/CPUTime.hsc | 2 -- System/Cmd.hs | 2 -- System/Console/GetOpt.hs | 2 -- System/Directory.hs | 2 -- System/Environment.hs | 2 -- System/Exit.hs | 2 -- System/IO.hs | 2 -- System/IO/Error.hs | 2 -- System/IO/Unsafe.hs | 2 -- System/Info.hs | 2 -- System/Locale.hs | 2 -- System/Mem.hs | 2 -- System/Mem/StableName.hs | 2 -- System/Mem/Weak.hs | 2 -- System/Random.hs | 2 -- System/Time.hsc | 2 -- Text/Html.hs | 2 -- Text/Html/BlockTable.hs | 2 -- Text/PrettyPrint.hs | 2 -- Text/PrettyPrint/HughesPJ.hs | 2 -- Text/Read.hs | 2 -- Text/Regex/Posix.hsc | 2 -- Text/Show.hs | 2 -- Text/Show/Functions.hs | 2 -- 100 files changed, 9 insertions(+), 205 deletions(-) diff --git a/Control/Arrow.hs b/Control/Arrow.hs index 34783e0..35cc00d 100644 --- a/Control/Arrow.hs +++ b/Control/Arrow.hs @@ -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. diff --git a/Control/Concurrent.hs b/Control/Concurrent.hs index 6b3ec94..2ef83ae 100644 --- a/Control/Concurrent.hs +++ b/Control/Concurrent.hs @@ -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. -- diff --git a/Control/Concurrent/CVar.hs b/Control/Concurrent/CVar.hs index a3b41de..ba465d2 100644 --- a/Control/Concurrent/CVar.hs +++ b/Control/Concurrent/CVar.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Control/Concurrent/Chan.hs b/Control/Concurrent/Chan.hs index 0992137..d6c1107 100644 --- a/Control/Concurrent/Chan.hs +++ b/Control/Concurrent/Chan.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Control/Concurrent/MVar.hs b/Control/Concurrent/MVar.hs index 472063a..b246bf8 100644 --- a/Control/Concurrent/MVar.hs +++ b/Control/Concurrent/MVar.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/Control/Concurrent/QSem.hs b/Control/Concurrent/QSem.hs index 88a4462..d439a8a 100644 --- a/Control/Concurrent/QSem.hs +++ b/Control/Concurrent/QSem.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/Control/Concurrent/QSemN.hs b/Control/Concurrent/QSemN.hs index c7a7fbc..59e5e39 100644 --- a/Control/Concurrent/QSemN.hs +++ b/Control/Concurrent/QSemN.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/Control/Concurrent/SampleVar.hs b/Control/Concurrent/SampleVar.hs index 8cd1915..47742eb 100644 --- a/Control/Concurrent/SampleVar.hs +++ b/Control/Concurrent/SampleVar.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/Control/Exception.hs b/Control/Exception.hs index 76b4d63..29aa8d3 100644 --- a/Control/Exception.hs +++ b/Control/Exception.hs @@ -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. -- diff --git a/Control/Monad.hs b/Control/Monad.hs index 7d6c978..aee36a2 100644 --- a/Control/Monad.hs +++ b/Control/Monad.hs @@ -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 diff --git a/Control/Monad/Cont.hs b/Control/Monad/Cont.hs index f9855b3..eb3f65c 100644 --- a/Control/Monad/Cont.hs +++ b/Control/Monad/Cont.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Control/Monad/Error.hs b/Control/Monad/Error.hs index e57a5b3..6f3967a 100644 --- a/Control/Monad/Error.hs +++ b/Control/Monad/Error.hs @@ -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 , diff --git a/Control/Monad/Fix.hs b/Control/Monad/Fix.hs index 4836db7..1122588 100644 --- a/Control/Monad/Fix.hs +++ b/Control/Monad/Fix.hs @@ -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: diff --git a/Control/Monad/Identity.hs b/Control/Monad/Identity.hs index 21056d3..e86da0b 100644 --- a/Control/Monad/Identity.hs +++ b/Control/Monad/Identity.hs @@ -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: diff --git a/Control/Monad/List.hs b/Control/Monad/List.hs index 3f7ee70..0c2cb22 100644 --- a/Control/Monad/List.hs +++ b/Control/Monad/List.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Control/Monad/Monoid.hs b/Control/Monad/Monoid.hs index 98a538a..23b10b3 100644 --- a/Control/Monad/Monoid.hs +++ b/Control/Monad/Monoid.hs @@ -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 diff --git a/Control/Monad/RWS.hs b/Control/Monad/RWS.hs index e050eae..a494ef0 100644 --- a/Control/Monad/RWS.hs +++ b/Control/Monad/RWS.hs @@ -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 diff --git a/Control/Monad/Reader.hs b/Control/Monad/Reader.hs index 223c296..8957404 100644 --- a/Control/Monad/Reader.hs +++ b/Control/Monad/Reader.hs @@ -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 diff --git a/Control/Monad/ST.hs b/Control/Monad/ST.hs index 6d19b9c..02d8d15 100644 --- a/Control/Monad/ST.hs +++ b/Control/Monad/ST.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/Control/Monad/ST/Lazy.hs b/Control/Monad/ST/Lazy.hs index 8b2f41b..ea30d20 100644 --- a/Control/Monad/ST/Lazy.hs +++ b/Control/Monad/ST/Lazy.hs @@ -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. -- diff --git a/Control/Monad/ST/Strict.hs b/Control/Monad/ST/Strict.hs index 72e5681..72f55e1 100644 --- a/Control/Monad/ST/Strict.hs +++ b/Control/Monad/ST/Strict.hs @@ -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) -- ----------------------------------------------------------------------------- diff --git a/Control/Monad/State.hs b/Control/Monad/State.hs index fef3ee8..878b83f 100644 --- a/Control/Monad/State.hs +++ b/Control/Monad/State.hs @@ -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 diff --git a/Control/Monad/Trans.hs b/Control/Monad/Trans.hs index 3e75ea1..81ff397 100644 --- a/Control/Monad/Trans.hs +++ b/Control/Monad/Trans.hs @@ -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 diff --git a/Control/Monad/Writer.hs b/Control/Monad/Writer.hs index 898069c..e79abb9 100644 --- a/Control/Monad/Writer.hs +++ b/Control/Monad/Writer.hs @@ -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 diff --git a/Control/Parallel.hs b/Control/Parallel.hs index e9b021b..ded89d9 100644 --- a/Control/Parallel.hs +++ b/Control/Parallel.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/Control/Parallel/Strategies.hs b/Control/Parallel/Strategies.hs index d011eca..b52f6aa 100644 --- a/Control/Parallel/Strategies.hs +++ b/Control/Parallel/Strategies.hs @@ -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: -$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 diff --git a/Data/Array.hs b/Data/Array.hs index aadfdfb..2cde6c9 100644 --- a/Data/Array.hs +++ b/Data/Array.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/Array/Base.hs b/Data/Array/Base.hs index 7ec369c..a1b4c3d 100644 --- a/Data/Array/Base.hs +++ b/Data/Array/Base.hs @@ -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. -- diff --git a/Data/Array/Diff.hs b/Data/Array/Diff.hs index 5bcaba5..9c65e6c 100644 --- a/Data/Array/Diff.hs +++ b/Data/Array/Diff.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/Array/IArray.hs b/Data/Array/IArray.hs index dff19d5..1c415cd 100644 --- a/Data/Array/IArray.hs +++ b/Data/Array/IArray.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/Array/IO.hs b/Data/Array/IO.hs index e7fd228..b47e147 100644 --- a/Data/Array/IO.hs +++ b/Data/Array/IO.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/Array/MArray.hs b/Data/Array/MArray.hs index e77f4eb..4e21479 100644 --- a/Data/Array/MArray.hs +++ b/Data/Array/MArray.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/Array/ST.hs b/Data/Array/ST.hs index dd6b908..d8c3028 100644 --- a/Data/Array/ST.hs +++ b/Data/Array/ST.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/Array/Storable.hs b/Data/Array/Storable.hs index b59301e..8c6fdf3 100644 --- a/Data/Array/Storable.hs +++ b/Data/Array/Storable.hs @@ -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. diff --git a/Data/Array/Unboxed.hs b/Data/Array/Unboxed.hs index 508df4d..3eb01fe 100644 --- a/Data/Array/Unboxed.hs +++ b/Data/Array/Unboxed.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/Bits.hs b/Data/Bits.hs index c280fe2..a72cf89 100644 --- a/Data/Bits.hs +++ b/Data/Bits.hs @@ -9,8 +9,6 @@ -- Stability : experimental -- Portability : portable -- --- $Id: Bits.hs,v 1.5 2002/04/24 16:31:39 simonmar Exp $ --- -- Bitwise operations. -- ----------------------------------------------------------------------------- diff --git a/Data/Bool.hs b/Data/Bool.hs index 181df1e..e681d18 100644 --- a/Data/Bool.hs +++ b/Data/Bool.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/Char.hs b/Data/Char.hs index a4bf1af..e7d7b72 100644 --- a/Data/Char.hs +++ b/Data/Char.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/Complex.hs b/Data/Complex.hs index e0738f1..f53f4a7 100644 --- a/Data/Complex.hs +++ b/Data/Complex.hs @@ -8,8 +8,6 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Complex.hs,v 1.3 2002/04/24 16:31:39 simonmar Exp $ --- -- Complex numbers. -- ----------------------------------------------------------------------------- diff --git a/Data/Dynamic.hs b/Data/Dynamic.hs index 209eea5..13e3550 100644 --- a/Data/Dynamic.hs +++ b/Data/Dynamic.hs @@ -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 diff --git a/Data/Either.hs b/Data/Either.hs index bc93248..fa9648c 100644 --- a/Data/Either.hs +++ b/Data/Either.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/FiniteMap.hs b/Data/FiniteMap.hs index b0fafd3..a44bb36 100644 --- a/Data/FiniteMap.hs +++ b/Data/FiniteMap.hs @@ -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 diff --git a/Data/Generics.hs b/Data/Generics.hs index a2f6a87..82a08c8 100644 --- a/Data/Generics.hs +++ b/Data/Generics.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/IORef.hs b/Data/IORef.hs index d165380..dec5906 100644 --- a/Data/IORef.hs +++ b/Data/IORef.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/Int.hs b/Data/Int.hs index 8d8a921..553704a 100644 --- a/Data/Int.hs +++ b/Data/Int.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/Ix.hs b/Data/Ix.hs index f7d41f3..d2022ed 100644 --- a/Data/Ix.hs +++ b/Data/Ix.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/List.hs b/Data/List.hs index 2a37187..069a31a 100644 --- a/Data/List.hs +++ b/Data/List.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/Maybe.hs b/Data/Maybe.hs index 36e684e..d0b5c18 100644 --- a/Data/Maybe.hs +++ b/Data/Maybe.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/PackedString.hs b/Data/PackedString.hs index cecb044..cc5240e 100644 --- a/Data/PackedString.hs +++ b/Data/PackedString.hs @@ -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, diff --git a/Data/Ratio.hs b/Data/Ratio.hs index d71551e..4462c44 100644 --- a/Data/Ratio.hs +++ b/Data/Ratio.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/Data/STRef.hs b/Data/STRef.hs index b3c4888..deaa209 100644 --- a/Data/STRef.hs +++ b/Data/STRef.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/Set.hs b/Data/Set.hs index 71f09c0..556bbc1 100644 --- a/Data/Set.hs +++ b/Data/Set.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/Tuple.hs b/Data/Tuple.hs index dc73a33..735a12a 100644 --- a/Data/Tuple.hs +++ b/Data/Tuple.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/Unique.hs b/Data/Unique.hs index a1cbf6f..3e093d3 100644 --- a/Data/Unique.hs +++ b/Data/Unique.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Data/Word.hs b/Data/Word.hs index aaa7fd7..0a8e512 100644 --- a/Data/Word.hs +++ b/Data/Word.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Debug/QuickCheck.hs b/Debug/QuickCheck.hs index bab6d2f..7bf87f2 100644 --- a/Debug/QuickCheck.hs +++ b/Debug/QuickCheck.hs @@ -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. diff --git a/Debug/QuickCheck/Batch.hs b/Debug/QuickCheck/Batch.hs index 7b6373b..66b0109 100644 --- a/Debug/QuickCheck/Batch.hs +++ b/Debug/QuickCheck/Batch.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Debug/QuickCheck/Poly.hs b/Debug/QuickCheck/Poly.hs index 4799d30..82bda15 100644 --- a/Debug/QuickCheck/Poly.hs +++ b/Debug/QuickCheck/Poly.hs @@ -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. -- diff --git a/Debug/QuickCheck/Utils.hs b/Debug/QuickCheck/Utils.hs index b353829..4705615 100644 --- a/Debug/QuickCheck/Utils.hs +++ b/Debug/QuickCheck/Utils.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Debug/Trace.hs b/Debug/Trace.hs index 79dcceb..08d2fc1 100644 --- a/Debug/Trace.hs +++ b/Debug/Trace.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Foreign.hs b/Foreign.hs index 41c56a6..9c3d045 100644 --- a/Foreign.hs +++ b/Foreign.hs @@ -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 diff --git a/Foreign/C.hs b/Foreign/C.hs index 937d8dd..fb6d10f 100644 --- a/Foreign/C.hs +++ b/Foreign/C.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/Foreign/C/Error.hs b/Foreign/C/Error.hs index 171d5b4..c667412 100644 --- a/Foreign/C/Error.hs +++ b/Foreign/C/Error.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/Foreign/C/String.hs b/Foreign/C/String.hs index 6f465e5..d5463a0 100644 --- a/Foreign/C/String.hs +++ b/Foreign/C/String.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/Foreign/C/Types.hs b/Foreign/C/Types.hs index 5def8b9..3e2905a 100644 --- a/Foreign/C/Types.hs +++ b/Foreign/C/Types.hs @@ -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... -- ----------------------------------------------------------------------------- diff --git a/Foreign/C/TypesISO.hs b/Foreign/C/TypesISO.hs index 742fc73..490a484 100644 --- a/Foreign/C/TypesISO.hs +++ b/Foreign/C/TypesISO.hs @@ -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... -- diff --git a/Foreign/ForeignPtr.hs b/Foreign/ForeignPtr.hs index a603587..43c3325 100644 --- a/Foreign/ForeignPtr.hs +++ b/Foreign/ForeignPtr.hs @@ -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. -- diff --git a/Foreign/Marshal/Alloc.hs b/Foreign/Marshal/Alloc.hs index eb4b04b..d02ef75 100644 --- a/Foreign/Marshal/Alloc.hs +++ b/Foreign/Marshal/Alloc.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/Foreign/Marshal/Array.hs b/Foreign/Marshal/Array.hs index 152b475..55b9c11 100644 --- a/Foreign/Marshal/Array.hs +++ b/Foreign/Marshal/Array.hs @@ -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 -- diff --git a/Foreign/Marshal/Error.hs b/Foreign/Marshal/Error.hs index 5b43dfc..1020f8a 100644 --- a/Foreign/Marshal/Error.hs +++ b/Foreign/Marshal/Error.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/Foreign/Marshal/Utils.hs b/Foreign/Marshal/Utils.hs index 5b21ca0..c8a5f74 100644 --- a/Foreign/Marshal/Utils.hs +++ b/Foreign/Marshal/Utils.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/Foreign/Ptr.hs b/Foreign/Ptr.hs index 7d75e69..0544486 100644 --- a/Foreign/Ptr.hs +++ b/Foreign/Ptr.hs @@ -9,8 +9,6 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Ptr.hs,v 1.7 2002/04/24 16:31:44 simonmar Exp $ --- -- Pointer types. -- ----------------------------------------------------------------------------- diff --git a/Foreign/StablePtr.hs b/Foreign/StablePtr.hs index 48acc57..1b169d0 100644 --- a/Foreign/StablePtr.hs +++ b/Foreign/StablePtr.hs @@ -9,8 +9,6 @@ -- Stability : provisional -- Portability : portable -- --- $Id: StablePtr.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $ --- -- Stable pointers. -- ----------------------------------------------------------------------------- diff --git a/Foreign/Storable.hs b/Foreign/Storable.hs index 869916d..90b655d 100644 --- a/Foreign/Storable.hs +++ b/Foreign/Storable.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/Numeric.hs b/Numeric.hs index 01036b2..3fc52fc 100644 --- a/Numeric.hs +++ b/Numeric.hs @@ -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. -- diff --git a/Prelude.hs b/Prelude.hs index ccbf617..002f0a7 100644 --- a/Prelude.hs +++ b/Prelude.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/System/CPUTime.hsc b/System/CPUTime.hsc index e7de787..e5a8a45 100644 --- a/System/CPUTime.hsc +++ b/System/CPUTime.hsc @@ -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. -- ----------------------------------------------------------------------------- diff --git a/System/Cmd.hs b/System/Cmd.hs index 6a47db0..14300be 100644 --- a/System/Cmd.hs +++ b/System/Cmd.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/System/Console/GetOpt.hs b/System/Console/GetOpt.hs index 2456df6..ca32286 100644 --- a/System/Console/GetOpt.hs +++ b/System/Console/GetOpt.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/System/Directory.hs b/System/Directory.hs index b860958..63d4319 100644 --- a/System/Directory.hs +++ b/System/Directory.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/System/Environment.hs b/System/Environment.hs index 117b7db..4215af6 100644 --- a/System/Environment.hs +++ b/System/Environment.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/System/Exit.hs b/System/Exit.hs index 6d486c9..0570c82 100644 --- a/System/Exit.hs +++ b/System/Exit.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/System/IO.hs b/System/IO.hs index b034132..eb080fc 100644 --- a/System/IO.hs +++ b/System/IO.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/System/IO/Error.hs b/System/IO/Error.hs index d18a7c5..357d50c 100644 --- a/System/IO/Error.hs +++ b/System/IO/Error.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/System/IO/Unsafe.hs b/System/IO/Unsafe.hs index 2f98633..db67a20 100644 --- a/System/IO/Unsafe.hs +++ b/System/IO/Unsafe.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/System/Info.hs b/System/Info.hs index adcfe79..fce5b43 100644 --- a/System/Info.hs +++ b/System/Info.hs @@ -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. -- diff --git a/System/Locale.hs b/System/Locale.hs index e58335f..cdef8ee 100644 --- a/System/Locale.hs +++ b/System/Locale.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/System/Mem.hs b/System/Mem.hs index 984db4e..2bac612 100644 --- a/System/Mem.hs +++ b/System/Mem.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/System/Mem/StableName.hs b/System/Mem/StableName.hs index f52be1d..c26738c 100644 --- a/System/Mem/StableName.hs +++ b/System/Mem/StableName.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/System/Mem/Weak.hs b/System/Mem/Weak.hs index 6a25986..4d75b31 100644 --- a/System/Mem/Weak.hs +++ b/System/Mem/Weak.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/System/Random.hs b/System/Random.hs index 59ff300..27fb7aa 100644 --- a/System/Random.hs +++ b/System/Random.hs @@ -8,8 +8,6 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Random.hs,v 1.4 2002/04/24 16:31:45 simonmar Exp $ --- -- Random numbers. -- ----------------------------------------------------------------------------- diff --git a/System/Time.hsc b/System/Time.hsc index 4db1d61..9bf935e 100644 --- a/System/Time.hsc +++ b/System/Time.hsc @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Text/Html.hs b/Text/Html.hs index 2967c39..cbb1998 100644 --- a/Text/Html.hs +++ b/Text/Html.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/Text/Html/BlockTable.hs b/Text/Html/BlockTable.hs index c5891f9..ddb4b58 100644 --- a/Text/Html/BlockTable.hs +++ b/Text/Html/BlockTable.hs @@ -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 -- ----------------------------------------------------------------------------- diff --git a/Text/PrettyPrint.hs b/Text/PrettyPrint.hs index 7f730ca..00a3b57 100644 --- a/Text/PrettyPrint.hs +++ b/Text/PrettyPrint.hs @@ -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. diff --git a/Text/PrettyPrint/HughesPJ.hs b/Text/PrettyPrint/HughesPJ.hs index 8b77da8..0bcfbbb 100644 --- a/Text/PrettyPrint/HughesPJ.hs +++ b/Text/PrettyPrint/HughesPJ.hs @@ -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" diff --git a/Text/Read.hs b/Text/Read.hs index e0c1d24..cc028b7 100644 --- a/Text/Read.hs +++ b/Text/Read.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Text/Regex/Posix.hsc b/Text/Regex/Posix.hsc index 1035518..8c84dbd 100644 --- a/Text/Regex/Posix.hsc +++ b/Text/Regex/Posix.hsc @@ -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. -- diff --git a/Text/Show.hs b/Text/Show.hs index 87597c0..6c5d20d 100644 --- a/Text/Show.hs +++ b/Text/Show.hs @@ -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. -- ----------------------------------------------------------------------------- diff --git a/Text/Show/Functions.hs b/Text/Show/Functions.hs index 5b85b4c..5d5c914 100644 --- a/Text/Show/Functions.hs +++ b/Text/Show/Functions.hs @@ -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. -- ----------------------------------------------------------------------------- -- 1.7.10.4