From 51ac61ffff22ad23b5c7edc3fcc503af1d88c745 Mon Sep 17 00:00:00 2001 From: Herbert Valerio Riedel <hvr@gnu.org> Date: Fri, 19 Sep 2014 00:41:35 +0200 Subject: [PATCH] Adapt to Data.List/Foldable generalisation --- List.hs | 2 +- Prelude.hs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/List.hs b/List.hs index b9383c4..eb87353 100644 --- a/List.hs +++ b/List.hs @@ -31,4 +31,4 @@ module List ( zip, zip3, zipWith, zipWith3, unzip, unzip3 ) where -import Data.List hiding (foldl', splitAt) +import Data.OldList hiding (foldl', splitAt) diff --git a/Prelude.hs b/Prelude.hs index f947e7e..bed225f 100644 --- a/Prelude.hs +++ b/Prelude.hs @@ -134,7 +134,7 @@ import qualified "base" Control.Exception.Base as New (catch) import "base" Control.Monad import "base" System.IO import "base" System.IO.Error (IOError, ioError, userError) -import "base" Data.List hiding ( splitAt ) +import "base" Data.OldList hiding ( splitAt ) import "base" Data.Either import "base" Data.Maybe import "base" Data.Tuple -- GitLab