diff options
author | Ben Gamari <ben@smart-cactus.org> | 2016-09-01 01:06:25 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-09-01 10:25:03 -0400 |
commit | da920f691145175dc310055ae533757e638caab4 (patch) | |
tree | b80993f3a4a591c9335725860c908533cebf4af4 /docs | |
parent | 1f5d4a32b4c73eb98c5d9467fbfb079f8d6128c0 (diff) | |
download | haskell-da920f691145175dc310055ae533757e638caab4.tar.gz |
users_guide: Move initGhcMonad note to 8.0.2 relnotes
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/8.0.2-notes.rst | 11 | ||||
-rw-r--r-- | docs/users_guide/8.2.1-notes.rst | 6 |
2 files changed, 12 insertions, 5 deletions
diff --git a/docs/users_guide/8.0.2-notes.rst b/docs/users_guide/8.0.2-notes.rst index e153ab2a86..09ba5720a5 100644 --- a/docs/users_guide/8.0.2-notes.rst +++ b/docs/users_guide/8.0.2-notes.rst @@ -67,3 +67,14 @@ TODO FIXME Heading title length :: forall {a} {t :: * -> *}. Foldable t => t a -> Int *X> :type +v length length :: forall (t :: * -> *). Foldable t => forall a. t a -> Int + +Libraries +--------- + +ghc +~~~ + +- The ``GHC.initGhcMonad`` function no longer installs signal handlers by + default. This means that the RTS won't attempt to handle Ctrl-C gracefully. + If you would like to use GHC's signal handlers, call + ``GHC.installSignalHandlers`` during initialization. diff --git a/docs/users_guide/8.2.1-notes.rst b/docs/users_guide/8.2.1-notes.rst index e74c15168e..87bc97f768 100644 --- a/docs/users_guide/8.2.1-notes.rst +++ b/docs/users_guide/8.2.1-notes.rst @@ -149,11 +149,7 @@ filepath ghc ~~~ -- The ``GHC.initGhcMonad`` function no longer installs signal handlers by - default. This means that the RTS won't attempt to handle Ctrl-C gracefully. - If you would like to use GHC's signal handlers, call - ``GHC.installSignalHandlers`` during initialization. - +- ghc-boot ~~~~~~~~ |