From 84141745a8f194f4e3562f57a2105eafecc38986 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 15 Apr 2015 02:55:16 +0200 Subject: [PATCH] xmonad: replace incorrect use of otherwise with _ --- xmonad/xmonad.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmonad/xmonad.hs b/xmonad/xmonad.hs index 9422146..198bf7f 100644 --- a/xmonad/xmonad.hs +++ b/xmonad/xmonad.hs @@ -36,7 +36,7 @@ import qualified XMonad.StackSet as W avoidMaster :: W.StackSet i l a s sd -> W.StackSet i l a s sd avoidMaster = W.modify' $ \c -> case c of W.Stack t [] (r:rs) -> W.Stack r [] (t:rs) - otherwise -> c + _ -> c -- Create my custom layout. -- -- 2.44.1