]> git.pld-linux.org Git - packages/vim.git/blame - 6.3.078
- up to 6.4.001 (but some todo issues left)
[packages/vim.git] / 6.3.078
CommitLineData
3cc08688
AM
1To: vim-dev@vim.org
2Subject: Patch 6.3.078 (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.3.078 (extra, after 6.3.077)
11Problem: VMS: Performance issue after patch 6.3.077
12Solution: Add a timeout in the itemlist. (Zoltan Arpadffy)
13Files: src/os_vms.c
14
15
16*** ../vim-6.3.077/src/os_vms.c Tue Jun 14 14:04:07 2005
17--- src/os_vms.c Tue Jun 14 19:03:58 2005
18***************
19*** 300,306 ****
20 {
21 int status, function, len;
22 TT_MODE tt_mode;
23! ITEM itmlst[2];
24 static long trm_mask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
25
26 /* whatever happened earlier we need an iochan here */
27--- 300,306 ----
28 {
29 int status, function, len;
30 TT_MODE tt_mode;
31! ITEM itmlst[3];
32 static long trm_mask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
33
34 /* whatever happened earlier we need an iochan here */
35***************
36*** 308,317 ****
37 tt_mode = get_tty();
38
39 vul_item(&itmlst[0], 0, TRM$_MODIFIERS,
40! (char *)( TRM$M_TM_ESCAPE | TRM$M_TM_TIMED | TRM$M_TM_NOECHO |
41! TRM$M_TM_NOEDIT | TRM$M_TM_NOFILTR |
42! TRM$M_TM_NORECALL| TRM$M_TM_TRMNOECHO), 0);
43! vul_item(&itmlst[1], sizeof(trm_mask), TRM$_TERM, (char *)&trm_mask, 0);
44
45 function = (IO$_READLBLK | IO$M_EXTEND);
46 memset(inbuf, 0, nbytes);
47--- 308,318 ----
48 tt_mode = get_tty();
49
50 vul_item(&itmlst[0], 0, TRM$_MODIFIERS,
51! (char *)( TRM$M_TM_ESCAPE | TRM$M_TM_TIMED | TRM$M_TM_NOECHO |
52! TRM$M_TM_NOEDIT | TRM$M_TM_NOFILTR |
53! TRM$M_TM_NORECALL| TRM$M_TM_TRMNOECHO), 0);
54! vul_item(&itmlst[1], 0, TRM$_TIMEOUT, (char *) 1, 0 );
55! vul_item(&itmlst[2], sizeof(trm_mask), TRM$_TERM, (char *)&trm_mask, 0);
56
57 function = (IO$_READLBLK | IO$M_EXTEND);
58 memset(inbuf, 0, nbytes);
59*** ../vim-6.3.077/src/version.c Tue Jun 14 14:04:07 2005
60--- src/version.c Tue Jun 14 19:05:34 2005
61***************
62*** 643,644 ****
63--- 643,646 ----
64 { /* Add new patch number below this line */
65+ /**/
66+ 78,
67 /**/
68
69--
70From "know your smileys":
71 O:-) Saint
72
73 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
74/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
75\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
76 \\\ Buy LOTR 3 and help AIDS victims -- http://ICCF.nl/lotr.html ///
This page took 0.034656 seconds and 4 git commands to generate.