diff options
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 ~~~~~~~~ |