summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--StackSet.hs6
1 files changed, 2 insertions, 4 deletions
diff --git a/StackSet.hs b/StackSet.hs
index b052141..73c3bfb 100644
--- a/StackSet.hs
+++ b/StackSet.hs
@@ -143,10 +143,8 @@ rotate :: (Integral i, Eq a) => Ordering -> StackSet i j a -> StackSet i j a
rotate o w = maybe w id $ do
f <- M.lookup (current w) (focus w)
s <- M.lookup (current w) (stacks w)
- ea <- case o of
- EQ -> Nothing
- GT -> elemAfter f s
- LT -> elemAfter f (reverse s)
+ ea <- case o of EQ -> Nothing
+ _ -> elemAfter f (if o == GT then s else reverse s)
return $ w { focus = M.insert (current w) ea (focus w) }
-- | /O(log n)/. shift. move the client on top of the current stack to