diff options
author | Alexander Polakov <plhk@sdf.org> | 2013-03-13 23:27:10 +0400 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2013-03-13 21:11:47 +0100 |
commit | 55522d3c6d43da03a8ce1869f4d29dfb2237310b (patch) | |
tree | 7be6ef04777190fe0203aae1525d3aa5a1e315ce | |
parent | cf588ed7123637e5a8fb768587ad69cd67086fa4 (diff) | |
download | xmobar-55522d3c6d43da03a8ce1869f4d29dfb2237310b.tar.gz xmobar-55522d3c6d43da03a8ce1869f4d29dfb2237310b.tar.bz2 |
Remove catch-all case in runAction
-rw-r--r-- | src/Actions.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Actions.hs b/src/Actions.hs index 156dc4e..cba027b 100644 --- a/src/Actions.hs +++ b/src/Actions.hs @@ -20,4 +20,3 @@ data Action = Spawn String runAction :: Action -> IO () runAction (Spawn s) = void $ system (s ++ "&") -runAction _ = return () |