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.4 / 7.4.252 < prev    next >
Encoding:
Internet Message Format  |  2014-04-05  |  1.4 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.252
  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.4.252
  11. Problem:    Critical error in GTK, removing timer twice.
  12. Solution:   Clear the timer after removing it. (James McCoy)
  13. Files:        src/gui_gtk_x11.c
  14.  
  15.  
  16. *** ../vim-7.4.251/src/gui_gtk_x11.c    2013-06-30 17:42:13.000000000 +0200
  17. --- src/gui_gtk_x11.c    2014-04-06 21:04:57.595359981 +0200
  18. ***************
  19. *** 732,738 ****
  20. --- 732,741 ----
  21.   gui_mch_start_blink(void)
  22.   {
  23.       if (blink_timer)
  24. +     {
  25.       gtk_timeout_remove(blink_timer);
  26. +     blink_timer = 0;
  27. +     }
  28.       /* Only switch blinking on if none of the times is zero */
  29.       if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
  30.       {
  31. *** ../vim-7.4.251/src/version.c    2014-04-06 20:45:40.127357453 +0200
  32. --- src/version.c    2014-04-06 21:06:25.543360173 +0200
  33. ***************
  34. *** 736,737 ****
  35. --- 736,739 ----
  36.   {   /* Add new patch number below this line */
  37. + /**/
  38. +     252,
  39.   /**/
  40.  
  41. -- 
  42. Everyone has a photographic memory. Some don't have film.
  43.  
  44.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  45. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  46. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  47.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  48.