diff options
author | gwern0 <gwern0@gmail.com> | 2010-06-20 19:51:40 +0200 |
---|---|---|
committer | gwern0 <gwern0@gmail.com> | 2010-06-20 19:51:40 +0200 |
commit | 578903317111d2396e63c453800f4241dc4a45b7 (patch) | |
tree | 1229698c32ce4be5da5dfa0367aa04f03629acc3 /XMonad | |
parent | e0b5ec1fbe30826d7edc03df5194537a33808216 (diff) | |
download | XMonadContrib-578903317111d2396e63c453800f4241dc4a45b7.tar.gz XMonadContrib-578903317111d2396e63c453800f4241dc4a45b7.tar.xz XMonadContrib-578903317111d2396e63c453800f4241dc4a45b7.zip |
XMonad.Util.Run: fix unicode char
Ignore-this: 3e524f9d8a96cb47c2c8c7c265d8e649
darcs-hash:20100620175140-f7719-512559a22f28ac7af66de74bf308cb8473290351.gz
Diffstat (limited to '')
-rw-r--r-- | XMonad/Util/Run.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Util/Run.hs b/XMonad/Util/Run.hs index 2afdae5..6820cad 100644 --- a/XMonad/Util/Run.hs +++ b/XMonad/Util/Run.hs @@ -65,7 +65,7 @@ runProcessWithInput cmd args input = io $ do -- no need to waitForProcess, we ignore SIGCHLD return output --- | Wait is in µs (microseconds) +-- | Wait is in μ (microseconds) runProcessWithInputAndWait :: MonadIO m => FilePath -> [String] -> String -> Int -> m () runProcessWithInputAndWait cmd args input timeout = io $ do xfork $ do |