]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.318
- updated to 6.2.430
[packages/vim.git] / 6.2.318
CommitLineData
c734f094
AG
1To: vim-dev@vim.org
2Subject: Patch 6.2.318
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.318
11Problem: When compiling with _THREAD_SAFE external commands don't echo
12 typed characters.
13Solution: Don't set the terminal mode to TMODE_SLEEP when it's already at
14 TMODE_COOK.
15Files: src/os_unix.c
16
17
18*** ../vim-6.2.317/src/os_unix.c Sun Feb 29 14:45:49 2004
19--- src/os_unix.c Fri Mar 5 15:14:01 2004
20***************
21*** 526,532 ****
22 /* Go to cooked mode without echo, to allow SIGINT interrupting us
23 * here */
24 old_tmode = curr_tmode;
25! settmode(TMODE_SLEEP);
26
27 /*
28 * Everybody sleeps in a different way...
29--- 526,533 ----
30 /* Go to cooked mode without echo, to allow SIGINT interrupting us
31 * here */
32 old_tmode = curr_tmode;
33! if (curr_tmode == TMODE_RAW)
34! settmode(TMODE_SLEEP);
35
36 /*
37 * Everybody sleeps in a different way...
38*** ../vim-6.2.317/src/version.c Fri Mar 5 12:12:37 2004
39--- src/version.c Fri Mar 5 15:20:12 2004
40***************
41*** 639,640 ****
42--- 639,642 ----
43 { /* Add new patch number below this line */
44+ /**/
45+ 318,
46 /**/
47
48--
49If an elephant is left tied to a parking meter, the parking fee has to be paid
50just as it would for a vehicle.
51 [real standing law in Florida, United States of America]
52
53 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
54/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
55\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
56 \\\ Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
This page took 0.02835 seconds and 4 git commands to generate.