diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2013-09-22 16:59:08 +0200 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2013-09-22 18:32:50 +0200 |
commit | 0a5ecb536e0f25383cfeacc6f50b0d28be297da4 (patch) | |
tree | c57a8e802bfac1e2ab83f04d14e9e9caf0eeb48f /libraries/base/System | |
parent | 2642d9f6eac5879c7d38bc51726bede1bef77df4 (diff) | |
download | haskell-0a5ecb536e0f25383cfeacc6f50b0d28be297da4.tar.gz |
Add Haddock `/Since: 4.5.[01].0/` comments to symbols
This commit retroactively adds `/Since: 4.5.[01].0/` annotations to symbols
newly added/exposed in `base-4.5.[01].0` (as shipped with GHC 7.4.[12]).
See also 6368362f which adds the respective annotation for symbols newly
added in `base-4.7.0.0` (that goes together with GHC 7.8.1).
Signed-off-by: Herbert Valerio Riedel <hvr@gnu.org>
Diffstat (limited to 'libraries/base/System')
-rw-r--r-- | libraries/base/System/IO/Unsafe.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libraries/base/System/IO/Unsafe.hs b/libraries/base/System/IO/Unsafe.hs index eb6eef654e..99284f2f74 100644 --- a/libraries/base/System/IO/Unsafe.hs +++ b/libraries/base/System/IO/Unsafe.hs @@ -40,6 +40,7 @@ import Control.Exception -- In this case, the child thread will receive a @NonTermination@ -- exception instead of waiting for the value of @r@ to be computed. -- +-- /Since: 4.5.0.0/ unsafeFixIO :: (a -> IO a) -> IO a unsafeFixIO k = do ref <- newIORef (throw NonTermination) |