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 / 6.2.127 < prev    next >
Encoding:
Internet Message Format  |  2003-10-16  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.127 (extra)
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.2.127 (extra)
  11. Problem:    Win32 console: Typing CTRL-C doesn't throw an exception.
  12. Solution:   Set got_int immediately when CTRL-C is typed, don't wait for
  13.         mch_breakcheck() being called.
  14. Files:        src/os_win32.c
  15.  
  16.  
  17. *** ../vim-6.2.126/src/os_win32.c    Thu Sep 11 21:50:44 2003
  18. --- src/os_win32.c    Thu Oct 16 19:41:18 2003
  19. ***************
  20. *** 1386,1393 ****
  21.           }
  22.   #endif
  23.   
  24. !         if (c == Ctrl_C)
  25. !         g_fCBrkPressed = TRUE;
  26.   
  27.   #ifdef FEAT_MOUSE
  28.           if (g_nMouseClick == -1)
  29. --- 1386,1396 ----
  30.           }
  31.   #endif
  32.   
  33. !         if (c == Ctrl_C && ctrl_c_interrupts)
  34. !         {
  35. !         trash_input_buf();
  36. !         got_int = TRUE;
  37. !         }
  38.   
  39.   #ifdef FEAT_MOUSE
  40.           if (g_nMouseClick == -1)
  41. *** ../vim-6.2.126/src/version.c    Fri Oct 17 12:18:17 2003
  42. --- src/version.c    Fri Oct 17 12:19:58 2003
  43. ***************
  44. *** 639,640 ****
  45. --- 639,642 ----
  46.   {   /* Add new patch number below this line */
  47. + /**/
  48. +     127,
  49.   /**/
  50.  
  51. -- 
  52. This sentence is not sure that it exists, but if it does, it will
  53. certainly consider the possibility that other sentences exist.
  54.  
  55.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  56. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  57. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  58.  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
  59.