diff options
author | Don Stewart <dons@galois.com> | 2007-11-19 03:37:12 +0100 |
---|---|---|
committer | Don Stewart <dons@galois.com> | 2007-11-19 03:37:12 +0100 |
commit | 28172bd22b6c9627e8423d0f3fb5756004d1a147 (patch) | |
tree | 1ed90603ce610f4a7cb0e6da0ac9e58fd475b73d /XMonad | |
parent | d90788a411ab2339502056c8f1ff2f4ddd4e6b64 (diff) | |
download | metatile-28172bd22b6c9627e8423d0f3fb5756004d1a147.tar metatile-28172bd22b6c9627e8423d0f3fb5756004d1a147.zip |
UNDO: use 'spawn' rather than runProcess, to report errors asynchronously, avoiding zombies
darcs-hash:20071119023712-cba2c-ac278350de0f73e350912575af41c3c93c757ca8
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Core.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/XMonad/Core.hs b/XMonad/Core.hs index d55b2e2..84b1311 100644 --- a/XMonad/Core.hs +++ b/XMonad/Core.hs @@ -325,7 +325,9 @@ recompile = do ["Error detected while loading xmonad configuration file: " ++ src] ++ lines ghcErr ++ ["","Please check the file for errors."] - spawn $ "xmessage '" ++ msg ++ "'" + waitForProcess =<< runProcess "xmessage" [msg] + Nothing Nothing Nothing Nothing Nothing + return () -- | Run a side effecting action with the current workspace. Like 'when' but whenJust :: Monad m => Maybe a -> (a -> m ()) -> m () |