aboutsummaryrefslogtreecommitdiffstats
path: root/Main.hs
diff options
context:
space:
mode:
authorDaniel Schoepe <daniel.schoepe@gmail.com>2009-11-06 12:50:50 +0100
committerDaniel Schoepe <daniel.schoepe@gmail.com>2009-11-06 12:50:50 +0100
commit795fed842c57d980e7644bb2df9eb66078ae6d44 (patch)
tree2a0d6f18800103fd8dd655e89fa3308e4314d5a5 /Main.hs
parentc04a3021b5e95603f7d80732a4bfafb60a4ef261 (diff)
downloadxmonad-795fed842c57d980e7644bb2df9eb66078ae6d44.tar.gz
xmonad-795fed842c57d980e7644bb2df9eb66078ae6d44.tar.xz
xmonad-795fed842c57d980e7644bb2df9eb66078ae6d44.zip
Support for extensible state in contrib modules.
Ignore-this: d04ee1989313ed5710c94f9d7fda3f2a darcs-hash:20091106115050-7f603-c88ce5e468856afd9e4d458ed3b0a2cfa39e63b3.gz
Diffstat (limited to 'Main.hs')
-rw-r--r--Main.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Main.hs b/Main.hs
index af44564..cce6868 100644
--- a/Main.hs
+++ b/Main.hs
@@ -39,7 +39,7 @@ main = do
let launch = catchIO buildLaunch >> xmonad defaultConfig
case args of
[] -> launch
- ["--resume", _] -> launch
+ ("--resume":_) -> launch
["--help"] -> usage
["--recompile"] -> recompile True >>= flip unless exitFailure
["--restart"] -> sendRestart >> return ()