summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2016-09-01 01:06:25 -0400
committerBen Gamari <ben@smart-cactus.org>2016-09-01 10:25:03 -0400
commitda920f691145175dc310055ae533757e638caab4 (patch)
treeb80993f3a4a591c9335725860c908533cebf4af4
parent1f5d4a32b4c73eb98c5d9467fbfb079f8d6128c0 (diff)
downloadhaskell-da920f691145175dc310055ae533757e638caab4.tar.gz
users_guide: Move initGhcMonad note to 8.0.2 relnotes
-rw-r--r--docs/users_guide/8.0.2-notes.rst11
-rw-r--r--docs/users_guide/8.2.1-notes.rst6
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
~~~~~~~~