From: Bram Moolenaar Date: Wed, 18 Mar 2009 11:22:25 +0000 (+0000) Subject: updated for version 7.2-142 X-Git-Tag: v7.2.142 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8281f445186de469b9466d119c840d7ccdedfe87;p=vim updated for version 7.2-142 --- diff --git a/src/gui_beval.c b/src/gui_beval.c index 7adde4ea5..e0d7b9c9e 100644 --- a/src/gui_beval.c +++ b/src/gui_beval.c @@ -1291,6 +1291,23 @@ drawBalloon(beval) XtNy, ty, NULL); #endif + /* Set tooltip colors */ + { + Arg args[2]; + +#ifdef FEAT_GUI_MOTIF + args[0].name = XmNbackground; + args[0].value = gui.tooltip_bg_pixel; + args[1].name = XmNforeground; + args[1].value = gui.tooltip_fg_pixel; +#else /* Athena */ + args[0].name = XtNbackground; + args[0].value = gui.tooltip_bg_pixel; + args[1].name = XtNforeground; + args[1].value = gui.tooltip_fg_pixel; +#endif + XtSetValues(beval->balloonLabel, &args[0], XtNumber(args)); + } XtPopup(beval->balloonShell, XtGrabNone); diff --git a/src/version.c b/src/version.c index e9dd27239..8ba2de2ff 100644 --- a/src/version.c +++ b/src/version.c @@ -676,6 +676,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 142, /**/ 141, /**/