]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.127
- removed conflict with 6.2.259
[packages/vim.git] / 6.2.127
CommitLineData
5f6937f1
AM
1To: vim-dev@vim.org
2Subject: Patch 6.2.127 (extra)
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 6.2.127 (extra)
11Problem: Win32 console: Typing CTRL-C doesn't throw an exception.
12Solution: Set got_int immediately when CTRL-C is typed, don't wait for
13 mch_breakcheck() being called.
14Files: 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--
52This sentence is not sure that it exists, but if it does, it will
53certainly 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 ///
This page took 0.036143 seconds and 4 git commands to generate.