home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.3 / 7.3.355 < prev    next >
Encoding:
Internet Message Format  |  2012-11-20  |  1.6 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.355
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.3.355
  11. Problem:    GTK warnings when using netrw.vim. (Ivan Krasilnikov)
  12. Solution:   Do not remove the beval event handler twice.
  13. Files:        src/option.c
  14.  
  15.  
  16. *** ../vim-7.3.354/src/option.c    2011-11-30 11:15:40.000000000 +0100
  17. --- src/option.c    2011-11-30 11:11:15.000000000 +0100
  18. ***************
  19. *** 7796,7804 ****
  20.   #ifdef FEAT_BEVAL
  21.       else if ((int *)varp == &p_beval)
  22.       {
  23. !     if (p_beval == TRUE)
  24.           gui_mch_enable_beval_area(balloonEval);
  25. !     else
  26.           gui_mch_disable_beval_area(balloonEval);
  27.       }
  28.   #endif
  29. --- 7796,7804 ----
  30.   #ifdef FEAT_BEVAL
  31.       else if ((int *)varp == &p_beval)
  32.       {
  33. !     if (p_beval && !old_value)
  34.           gui_mch_enable_beval_area(balloonEval);
  35. !     else if (!p_beval && old_value)
  36.           gui_mch_disable_beval_area(balloonEval);
  37.       }
  38.   #endif
  39. *** ../vim-7.3.354/src/version.c    2011-11-30 11:15:40.000000000 +0100
  40. --- src/version.c    2011-11-30 11:30:55.000000000 +0100
  41. ***************
  42. *** 716,717 ****
  43. --- 716,719 ----
  44.   {   /* Add new patch number below this line */
  45. + /**/
  46. +     355,
  47.   /**/
  48.  
  49. -- 
  50. hundred-and-one symptoms of being an internet addict:
  51. 209. Your house stinks because you haven't cleaned it in a week.
  52.  
  53.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  54. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  55. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  56.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  57.