From 36e20f689c6f9d87a8196d18f38f2f3dba6dd57c Mon Sep 17 00:00:00 2001 From: Spencer Janssen Date: Fri, 18 Sep 2009 03:55:47 +0000 Subject: [PATCH] Remove redundant parens --- XMonad/Core.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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