]> git.pld-linux.org Git - packages/vim.git/blame - 6.3.025
- typo
[packages/vim.git] / 6.3.025
CommitLineData
be561239
AG
1To: vim-dev@vim.org
2Subject: Patch 6.3.025 (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.025 (extra)
11Problem: Missing NUL for list of server names.
12Solution: Add ga_append(NUL) in serverGetVimNames().
13Files: 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--
39Apologies for taking up the bandwidth with the apology. Anything else I
40can 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.072047 seconds and 4 git commands to generate.