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

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.369
  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.369
  11. Problem:    When compiled with Gnome get an error message when using --help.
  12. Solution:   Don't fork. (Ivan Krasilnikov)
  13. Files:        src/main.c
  14.  
  15.  
  16. *** ../vim-7.3.368/src/main.c    2011-10-04 16:43:49.000000000 +0200
  17. --- src/main.c    2011-12-01 20:27:11.000000000 +0100
  18. ***************
  19. *** 3294,3300 ****
  20. --- 3294,3303 ----
  21.   #ifdef FEAT_GUI_GNOME
  22.       /* Gnome gives extra messages for --help if we continue, but not for -h. */
  23.       if (gui.starting)
  24. +     {
  25.       mch_msg("\n");
  26. +     gui.dofork = FALSE;
  27. +     }
  28.       else
  29.   #endif
  30.       mch_exit(0);
  31. *** ../vim-7.3.368/src/version.c    2011-12-08 15:17:28.000000000 +0100
  32. --- src/version.c    2011-12-08 15:57:03.000000000 +0100
  33. ***************
  34. *** 716,717 ****
  35. --- 716,719 ----
  36.   {   /* Add new patch number below this line */
  37. + /**/
  38. +     369,
  39.   /**/
  40.  
  41. -- 
  42. Vi is clearly superior to emacs, since "vi" has only two characters
  43. (and two keystrokes), while "emacs" has five.  (Randy C. Ford)
  44.  
  45.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  46. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  47. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  48.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  49.