summaryrefslogtreecommitdiffhomepage
path: root/src/Xmobar/X11/Parsers.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Xmobar/X11/Parsers.hs')
-rw-r--r--src/Xmobar/X11/Parsers.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Xmobar/X11/Parsers.hs b/src/Xmobar/X11/Parsers.hs
index c25715c..7fa5c00 100644
--- a/src/Xmobar/X11/Parsers.hs
+++ b/src/Xmobar/X11/Parsers.hs
@@ -40,7 +40,7 @@ data BoxBorder = BBTop
data Box = Box BoxBorder Align Int32 CInt String deriving ( Eq )
instance Read Box where
readsPrec _ input = do
- let b = case (words input) of
+ let b = case words input of
[pos] -> Just $ Box (read pos) C 0 1 "white"
[pos,alg] -> Just $ Box (read pos) (read alg) 0 1 "white"
[pos,alg,off] -> Just $ Box (read pos) (read alg) (read off) 1 "white"