From: Simon Ruderich Date: Wed, 15 Apr 2015 00:55:16 +0000 (+0200) Subject: xmonad: replace incorrect use of otherwise with _ X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=84141745a8f194f4e3562f57a2105eafecc38986;p=config%2Fdotfiles.git xmonad: replace incorrect use of otherwise with _ --- 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. --