summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-11-30 11:31:30 +0100
committerBram Moolenaar <Bram@vim.org>2011-11-30 11:31:30 +0100
commit49e4ec6eee224be8426cb9d10b9d6302f948a23e (patch)
tree37adc27f0434006481717581bba3fe029539b1c5 /src
parent4e5ccfa5c7183f8aed74f3c012816b9478a50263 (diff)
downloadvim-git-49e4ec6eee224be8426cb9d10b9d6302f948a23e.tar.gz
updated for version 7.3.355v7.3.355
Problem: GTK warnings when using netrw.vim. (Ivan Krasilnikov) Solution: Do not remove the beval event handler twice.
Diffstat (limited to 'src')
-rw-r--r--src/option.c4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/option.c b/src/option.c
index b8e49d8b1..65c53ce56 100644
--- a/src/option.c
+++ b/src/option.c
@@ -7796,9 +7796,9 @@ set_bool_option(opt_idx, varp, value, opt_flags)
#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
index d3ff17077..8496ef41a 100644
--- 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,