# HG changeset patch # User Bram Moolenaar # Date 1322649090 -3600 # Node ID d2f70593afeb432611cdb0ea2a0600c2869a20e0 # Parent 8fc1710a75c9831309044320f8af8004cb9549eb updated for version 7.3.355 Problem: GTK warnings when using netrw.vim. (Ivan Krasilnikov) Solution: Do not remove the beval event handler twice. diff --git a/src/option.c b/src/option.c --- a/src/option.c +++ b/src/option.c @@ -7796,9 +7796,9 @@ set_bool_option(opt_idx, varp, value, op #ifdef FEAT_BEVAL else if ((int *)varp == &p_beval) { - if (p_beval == TRUE) + if (p_beval && !old_value) gui_mch_enable_beval_area(balloonEval); - else + else if (!p_beval && old_value) gui_mch_disable_beval_area(balloonEval); } #endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 355, +/**/ 354, /**/ 353,