]> git.pld-linux.org Git - packages/vim.git/blob - 6.3.025
- typo
[packages/vim.git] / 6.3.025
1 To: vim-dev@vim.org
2 Subject: Patch 6.3.025 (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.025 (extra)
11 Problem:    Missing NUL for list of server names.
12 Solution:   Add ga_append(NUL) in serverGetVimNames().
13 Files:      src/os_mswin.c
14
15
16 *** ../vim-6.3.024/src/os_mswin.c       Sat Sep  4 16:28:02 2004
17 --- src/os_mswin.c      Sun Sep  5 20:35:30 2004
18 ***************
19 *** 2672,2677 ****
20 --- 2672,2678 ----
21       ga_init2(&ga, 1, 100);
22   
23       EnumWindows(enumWindowsGetNames, (LPARAM)(&ga));
24 +     ga_append(&ga, NUL);
25   
26       return ga.ga_data;
27   }
28 *** ../vim-6.3.024/src/version.c        Sun Sep  5 20:48:38 2004
29 --- src/version.c       Sun Sep  5 20:51:54 2004
30 ***************
31 *** 643,644 ****
32 --- 643,646 ----
33   {   /* Add new patch number below this line */
34 + /**/
35 +     25,
36   /**/
37
38 -- 
39 Apologies for taking up the bandwidth with the apology.  Anything else I
40 can apologise for ...... er no can't think of anything, sorry about that.
41                 Andy Hunt (Member of British Olympic Apology Squad)
42
43  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
44 ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
45 \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
46  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
This page took 0.079804 seconds and 3 git commands to generate.