From f9af744b1eb22f43e5669a2305ff85f3f94f27e4 Mon Sep 17 00:00:00 2001 From: Spencer Janssen Date: Wed, 16 May 2007 05:42:33 +0000 Subject: [PATCH] Read is not needed for StackSet --- StackSet.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StackSet.hs b/StackSet.hs index 375a096..9fbd6bb 100644 --- a/StackSet.hs +++ b/StackSet.hs @@ -44,7 +44,7 @@ data StackSet i j a = , stacks :: !(M.Map i ([a], [a])) -- ^ screen -> (floating, normal) , focus :: !(M.Map i [a]) -- ^ the stack of window focus in each stack , cache :: !(M.Map a i) -- ^ a cache of windows back to their stacks - } deriving (Eq, Show, Read) + } deriving (Eq, Show) -- The cache is used to check on insertion that we don't already have -- this window managed on another stack