f598b00
To: vim_dev@googlegroups.com
f598b00
Subject: Patch 7.3.355
f598b00
Fcc: outbox
f598b00
From: Bram Moolenaar <Bram@moolenaar.net>
f598b00
Mime-Version: 1.0
f598b00
Content-Type: text/plain; charset=UTF-8
f598b00
Content-Transfer-Encoding: 8bit
f598b00
------------
f598b00
f598b00
Patch 7.3.355
f598b00
Problem:    GTK warnings when using netrw.vim. (Ivan Krasilnikov)
f598b00
Solution:   Do not remove the beval event handler twice.
f598b00
Files:	    src/option.c
f598b00
f598b00
f598b00
*** ../vim-7.3.354/src/option.c	2011-11-30 11:15:40.000000000 +0100
f598b00
--- src/option.c	2011-11-30 11:11:15.000000000 +0100
f598b00
***************
f598b00
*** 7796,7804 ****
f598b00
  #ifdef FEAT_BEVAL
f598b00
      else if ((int *)varp == &p_beval)
f598b00
      {
f598b00
! 	if (p_beval == TRUE)
f598b00
  	    gui_mch_enable_beval_area(balloonEval);
f598b00
! 	else
f598b00
  	    gui_mch_disable_beval_area(balloonEval);
f598b00
      }
f598b00
  #endif
f598b00
--- 7796,7804 ----
f598b00
  #ifdef FEAT_BEVAL
f598b00
      else if ((int *)varp == &p_beval)
f598b00
      {
f598b00
! 	if (p_beval && !old_value)
f598b00
  	    gui_mch_enable_beval_area(balloonEval);
f598b00
! 	else if (!p_beval && old_value)
f598b00
  	    gui_mch_disable_beval_area(balloonEval);
f598b00
      }
f598b00
  #endif
f598b00
*** ../vim-7.3.354/src/version.c	2011-11-30 11:15:40.000000000 +0100
f598b00
--- src/version.c	2011-11-30 11:30:55.000000000 +0100
f598b00
***************
f598b00
*** 716,717 ****
f598b00
--- 716,719 ----
f598b00
  {   /* Add new patch number below this line */
f598b00
+ /**/
f598b00
+     355,
f598b00
  /**/
f598b00
f598b00
-- 
f598b00
hundred-and-one symptoms of being an internet addict:
f598b00
209. Your house stinks because you haven't cleaned it in a week.
f598b00
f598b00
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
f598b00
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
f598b00
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
f598b00
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///