silently 1.1.2 → 1.1.3
raw patch · 2 files changed
+1/−5 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- silently.cabal +1/−1
- src/unix/System/IO/Silently.hs +0/−4
silently.cabal view
@@ -1,5 +1,5 @@ name: silently-version: 1.1.2+version: 1.1.3 cabal-version: >= 1.2 build-type: Simple license: BSD3
src/unix/System/IO/Silently.hs view
@@ -58,13 +58,9 @@ a <- action hClose tmpHandle str <- readFile tmpFile- forceList str return (str,a) go (h:hs) = bracket (do old <- hDuplicate h hDuplicateTo tmpHandle h return old) (\old -> hDuplicateTo old h) (\_ -> go hs)--forceList [] = return ()-forceList (x:xs) = forceList xs