diff options
author | Joey Hess <joey@kitenet.net> | 2012-03-17 00:22:05 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-03-17 00:38:40 -0400 |
commit | a362c46b70c45872ff8c479ba5a6716cf13cc8d8 (patch) | |
tree | e8f08204dc679a1d7c23b5cd466606e7877a2469 /Command/Find.hs | |
parent | d6624b6c798df401eb9e715810537d2b93935a76 (diff) |
fun with symbols
Nothing at all on hackage is using <&&> or <||>.
(Also, <&&> should short-circuit on failure.)
Diffstat (limited to 'Command/Find.hs')
-rw-r--r-- | Command/Find.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Find.hs b/Command/Find.hs index f5bd2734b..e568c3510 100644 --- a/Command/Find.hs +++ b/Command/Find.hs @@ -42,7 +42,7 @@ start :: Maybe Utility.Format.Format -> FilePath -> (Key, Backend) -> CommandSta start format file (key, _) = do -- only files inAnnex are shown, unless the user has requested -- others via a limit - whenM (orM limited (inAnnex key)) $ + whenM (limited <||> inAnnex key) $ unlessM (showFullJSON vars) $ case format of Nothing -> liftIO $ putStrLn file |