diff options
author | andy@galois.com <unknown> | 2006-10-25 07:59:00 +0000 |
---|---|---|
committer | andy@galois.com <unknown> | 2006-10-25 07:59:00 +0000 |
commit | 1bd2c2dc49d10becff8225f090f807f16a8ab67b (patch) | |
tree | e05d9b8d31b0dd4d92e1db4b1233206e8f91d8be /compiler/main/HeaderInfo.hs | |
parent | d5934bbb856aa0aa620c9b2e0fa51c90a1a5a048 (diff) | |
download | haskell-1bd2c2dc49d10becff8225f090f807f16a8ab67b.tar.gz |
6.4 compatiblity
Diffstat (limited to 'compiler/main/HeaderInfo.hs')
-rw-r--r-- | compiler/main/HeaderInfo.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main/HeaderInfo.hs b/compiler/main/HeaderInfo.hs index dc97e20544..dc1b35ca3f 100644 --- a/compiler/main/HeaderInfo.hs +++ b/compiler/main/HeaderInfo.hs @@ -92,7 +92,7 @@ getImpMod (ImportDecl located_mod _ _ _ _) = located_mod getOptionsFromFile :: FilePath -- input file -> IO [Located String] -- options, if any getOptionsFromFile filename - = System.IO.bracket + = Control.Exception.bracket (openBinaryFile filename ReadMode) (hClose) (\handle -> |