aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad.hs
diff options
context:
space:
mode:
authorSpencer Janssen <sjanssen@cse.unl.edu>2007-10-04 22:02:00 +0200
committerSpencer Janssen <sjanssen@cse.unl.edu>2007-10-04 22:02:00 +0200
commit2ce7fb471ab33545382573b08404f6688bb1551a (patch)
tree7e6c0bddccad870dee0edfd9e460048b9d8ed7c7 /XMonad.hs
parentdf36a36fe10f22bc337784f8559e77401dd9a18e (diff)
downloadxmonad-2ce7fb471ab33545382573b08404f6688bb1551a.tar.gz
xmonad-2ce7fb471ab33545382573b08404f6688bb1551a.tar.xz
xmonad-2ce7fb471ab33545382573b08404f6688bb1551a.zip
Remove commented code
darcs-hash:20071004200200-a5988-43e27252ed8a109311d5a82ec1ed9b31c345fb6e.gz
Diffstat (limited to '')
-rw-r--r--XMonad.hs7
1 files changed, 0 insertions, 7 deletions
diff --git a/XMonad.hs b/XMonad.hs
index 0db0eac..818586f 100644
--- a/XMonad.hs
+++ b/XMonad.hs
@@ -229,13 +229,6 @@ whenJust mg f = maybe (return ()) f mg
whenX :: X Bool -> X () -> X ()
whenX a f = a >>= \b -> when b f
--- Grab the X server (lock it) from the X monad
--- withServerX :: X () -> X ()
--- withServerX f = withDisplay $ \dpy -> do
--- io $ grabServer dpy
--- f
--- io $ ungrabServer dpy
-
-- | A 'trace' for the X monad. Logs a string to stderr. The result may
-- be found in your .xsession-errors file
trace :: String -> X ()