mirror of
https://github.com/xmonad/xmonad.git
synced 2025-05-19 08:30:21 -07:00
Remove redundant parens
This commit is contained in:
parent
cde261ed56
commit
36e20f689c
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user