From 03e3f12738d72c9b81078d10f4dc13e00c54cc7b Mon Sep 17 00:00:00 2001 From: Heinrich Apfelmus Date: Sun, 21 Dec 2014 20:49:53 +0100 Subject: [PATCH] The documentation for `pause` now indicates that the event handlers are not, in fact, unregistered. #73 --- reactive-banana/src/Reactive/Banana/Frameworks.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactive-banana/src/Reactive/Banana/Frameworks.hs b/reactive-banana/src/Reactive/Banana/Frameworks.hs index 0c3065e2..6fe1f64e 100644 --- a/reactive-banana/src/Reactive/Banana/Frameworks.hs +++ b/reactive-banana/src/Reactive/Banana/Frameworks.hs @@ -279,8 +279,8 @@ actuate :: EventNetwork -> IO () actuate = Prim.actuate . unEN -- | Pause an event network. --- Immediately stop producing output and --- unregister all event handlers for inputs. +-- Immediately stop producing output. +-- (In a future version, it will also unregister all event handlers for inputs.) -- Hence, the network stops responding to input events, -- but it's state will be preserved. --