patch 7.4.842
Problem:    Sending too many messages to close the balloon.
Solution:   Only send a WM_CLOSE message. (Jurgen Kramer)
diff --git a/src/gui_w32.c b/src/gui_w32.c
index 20e94c3..b35c8ab 100644
--- a/src/gui_w32.c
+++ b/src/gui_w32.c
@@ -4837,8 +4837,6 @@
     BalloonEval	*beval;
 {
     PostMessage(beval->balloon, WM_CLOSE, 0, 0);
-    PostMessage(beval->balloon, WM_DESTROY, 0, 0);
-    PostMessage(beval->balloon, WM_NCDESTROY, 0, 0);
 }
 
 /*ARGSUSED*/
diff --git a/src/version.c b/src/version.c
index bc95c5d..37df414 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    842,
+/**/
     841,
 /**/
     840,