summaryrefslogtreecommitdiffstats
path: root/XMonad
diff options
context:
space:
mode:
authorSpencer Janssen <spencerjanssen@gmail.com>2009-09-18 05:55:47 +0200
committerSpencer Janssen <spencerjanssen@gmail.com>2009-09-18 05:55:47 +0200
commit4af01975f547c31411300be0d5801ef15e8b569c (patch)
tree1fc1d89abe5c8ac3614699ee1d0def8e2e297cd0 /XMonad
parent5be2076fe273051e8018d6b1c894bd9e9f18ec60 (diff)
downloadmetatile-4af01975f547c31411300be0d5801ef15e8b569c.tar
metatile-4af01975f547c31411300be0d5801ef15e8b569c.zip
Remove redundant parens
Ignore-this: aefa46cdb3ad8496e20d15a7e6b5fa52 darcs-hash:20090918035547-25a6b-626adbc3a96a55063577fe31043b53cc14264966
Diffstat (limited to 'XMonad')
-rw-r--r--XMonad/Core.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Core.hs b/XMonad/Core.hs
index be366cd..a410590 100644
--- a/XMonad/Core.hs
+++ b/XMonad/Core.hs
@@ -415,7 +415,7 @@ recompile force = io $ do
libTs <- mapM getModTime . Prelude.filter isSource =<< allFiles lib
srcT <- getModTime src
binT <- getModTime bin
- if (force || srcT > binT || any (binT<) libTs)
+ if force || any (binT <) (srcT : libTs)
then do
-- temporarily disable SIGCHLD ignoring:
uninstallSignalHandlers