]> git.pld-linux.org Git - packages/vim.git/blob - 6.3.078
- license change to GPL
[packages/vim.git] / 6.3.078
1 To: vim-dev@vim.org
2 Subject: Patch 6.3.078 (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.3.078 (extra, after 6.3.077)
11 Problem:    VMS: Performance issue after patch 6.3.077
12 Solution:   Add a timeout in the itemlist.  (Zoltan Arpadffy)
13 Files:      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 -- 
70 From "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.062336 seconds and 3 git commands to generate.