]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.353
- updated to 6.2.430
[packages/vim.git] / 6.2.353
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.353 (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.2.353 (extra)
11 Problem:    Win32: Supported server name length is limited. (Paul Bossi)
12 Solution:   Use MAX_PATH instead of 25.
13 Files:      src/os_mswin.c
14
15
16 *** ../vim-6.2.352/src/os_mswin.c       Thu Mar 11 21:03:40 2004
17 --- src/os_mswin.c      Sat Mar 13 16:08:12 2004
18 ***************
19 *** 2528,2534 ****
20   enumWindowsGetServer(HWND hwnd, LPARAM lparam)
21   {
22       struct    server_id *id = (struct server_id *)lparam;
23 !     char      server[25];
24   
25       /* Get the title of the window */
26       if (getVimServerName(hwnd, server, sizeof(server)) == 0)
27 --- 2528,2534 ----
28   enumWindowsGetServer(HWND hwnd, LPARAM lparam)
29   {
30       struct    server_id *id = (struct server_id *)lparam;
31 !     char      server[MAX_PATH];
32   
33       /* Get the title of the window */
34       if (getVimServerName(hwnd, server, sizeof(server)) == 0)
35 ***************
36 *** 2549,2555 ****
37   enumWindowsGetNames(HWND hwnd, LPARAM lparam)
38   {
39       garray_T  *ga = (garray_T *)lparam;
40 !     char      server[25];
41   
42       /* Get the title of the window */
43       if (getVimServerName(hwnd, server, sizeof(server)) == 0)
44 --- 2549,2555 ----
45   enumWindowsGetNames(HWND hwnd, LPARAM lparam)
46   {
47       garray_T  *ga = (garray_T *)lparam;
48 !     char      server[MAX_PATH];
49   
50       /* Get the title of the window */
51       if (getVimServerName(hwnd, server, sizeof(server)) == 0)
52 *** ../vim-6.2.352/src/version.c        Sat Mar 13 14:28:50 2004
53 --- src/version.c       Sat Mar 13 16:13:03 2004
54 ***************
55 *** 639,640 ****
56 --- 639,642 ----
57   {   /* Add new patch number below this line */
58 + /**/
59 +     353,
60   /**/
61
62 -- 
63 Bypasses are devices that allow some people to dash from point A to
64 point B very fast while other people dash from point B to point A very
65 fast.  People living at point C, being a point directly in between, are
66 often given to wonder what's so great about point A that so many people
67 from point B are so keen to get there and what's so great about point B
68 that so many people from point A are so keen to get there.  They often
69 wish that people would just once and for all work out where the hell
70 they wanted to be.
71                 -- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"
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 at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
This page took 0.036927 seconds and 3 git commands to generate.