From: Bram Moolenaar Date: Thu, 27 Aug 2015 20:25:10 +0000 (+0200) Subject: patch 7.4.842 X-Git-Tag: v7.4.842 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cdf0442d009ea97fad06d72231f7de309c75205a;p=vim 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 20e94c369..b35c8ab8f 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -4837,8 +4837,6 @@ delete_tooltip(beval) 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 bc95c5d6f..37df414e7 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 842, /**/ 841, /**/