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

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.635
  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.635
  11. Problem:    Issue 21: System call during startup sets 'lines' to a wrong
  12.         value. (Karl Yngve)
  13. Solution:   Don't set the shell size while the GUI is still starting up.
  14.         (Christian Brabandt)
  15. Files:        src/ui.c
  16.  
  17.  
  18. *** ../vim-7.3.634/src/ui.c    2012-07-10 16:49:08.000000000 +0200
  19. --- src/ui.c    2012-08-23 13:25:26.000000000 +0200
  20. ***************
  21. *** 298,303 ****
  22. --- 298,306 ----
  23.       int        retval;
  24.   
  25.   #ifdef FEAT_GUI
  26. +     if (gui.starting)
  27. +     /* possibly a system call during startup, check later */
  28. +     return OK;
  29.       if (gui.in_use)
  30.       retval = gui_get_shellsize();
  31.       else
  32. *** ../vim-7.3.634/src/version.c    2012-08-23 12:58:56.000000000 +0200
  33. --- src/version.c    2012-08-23 13:27:00.000000000 +0200
  34. ***************
  35. *** 721,722 ****
  36. --- 721,724 ----
  37.   {   /* Add new patch number below this line */
  38. + /**/
  39. +     635,
  40.   /**/
  41.  
  42. -- 
  43. ARTHUR: This new learning amazes me, Sir Bedevere.  Explain again how sheep's
  44.         bladders may be employed to prevent earthquakes.
  45.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  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.