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

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.619
  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.619
  11. Problem:    When executing a shell command Vim may become slow to respond.
  12. Solution:   Don't wait after every processed message. (idea by Yasuhiro
  13.         Matsumoto)
  14. Files:        src/os_win32.c
  15.  
  16.  
  17. *** ../vim-7.3.618/src/os_win32.c    2012-07-19 11:37:22.000000000 +0200
  18. --- src/os_win32.c    2012-08-02 12:30:52.000000000 +0200
  19. ***************
  20. *** 3319,3324 ****
  21. --- 3319,3326 ----
  22.           {
  23.           TranslateMessage(&msg);
  24.           pDispatchMessage(&msg);
  25. +         delay = 1;
  26. +         continue;
  27.           }
  28.           if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
  29.           break;
  30. *** ../vim-7.3.618/src/version.c    2012-07-29 12:55:21.000000000 +0200
  31. --- src/version.c    2012-08-02 12:29:08.000000000 +0200
  32. ***************
  33. *** 716,717 ****
  34. --- 716,719 ----
  35.   {   /* Add new patch number below this line */
  36. + /**/
  37. +     619,
  38.   /**/
  39.  
  40. -- 
  41. Some of the well know MS-Windows errors:
  42.     EMULTI        Multitasking attempted, system confused
  43.     EKEYBOARD    Keyboard locked, try getting out of this one!
  44.     EXPLAIN        Unexplained error, please tell us what happened
  45.     EFUTURE        Reserved for our future mistakes
  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.