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.530 < prev    next >
Encoding:
Internet Message Format  |  2012-11-20  |  1.5 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.530
  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.530 (after 7.3.520)
  11. Problem:    Gvim does not work when 'guioptions' includes "f". (Davido)
  12. Solution:   Call gui_mch_init_check() when running GUI in the foreground.
  13.         (Yasuhiro Matsumoto)
  14. Files:        src/gui.c
  15.  
  16.  
  17. *** ../vim-7.3.529/src/gui.c    2012-05-18 17:03:13.000000000 +0200
  18. --- src/gui.c    2012-05-25 14:01:26.000000000 +0200
  19. ***************
  20. *** 102,107 ****
  21. --- 102,111 ----
  22.       else
  23.   #endif
  24.       {
  25. +     /* If there is 'f' in 'guioptions' and specify -g argument,
  26. +      * gui_mch_init_check() was not called yet.  */
  27. +     if (gui_mch_init_check() != OK)
  28. +         exit(1);
  29.       gui_attempt_start();
  30.       }
  31.   
  32. *** ../vim-7.3.529/src/version.c    2012-05-25 13:12:33.000000000 +0200
  33. --- src/version.c    2012-05-25 14:05:46.000000000 +0200
  34. ***************
  35. *** 716,717 ****
  36. --- 716,719 ----
  37.   {   /* Add new patch number below this line */
  38. + /**/
  39. +     530,
  40.   /**/
  41.  
  42. -- 
  43. I think that you'll agree that engineers are very effective in their social
  44. interactions.  It's the "normal" people who are nuts.
  45.                 (Scott Adams - The Dilbert principle)
  46.  
  47.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  48. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  49. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  50.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  51.