]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.275
- initial import
[packages/vim.git] / 6.2.275
CommitLineData
34eabb99
AG
1To: vim-dev@vim.org
2Subject: Patch 6.2.275 (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.2.275 (extra, after 6.2.267)
11Problem: Warning for uninitialized variable when using gcc.
12Solution: Initialize "acLen" to zero. (Bill McCarthy)
13Files: src/gui_w32.c
14
15
16*** ../vim-6.2.274/src/gui_w32.c Tue Feb 17 21:08:58 2004
17--- src/gui_w32.c Wed Feb 18 11:35:44 2004
18***************
19*** 2966,2972 ****
20 int col, spaceWidth, len;
21 int columnWidths[2];
22 char_u *label, *text;
23! int acLen;
24 int nameLen;
25 int padding0, padding1, padding2 = 0;
26 int sepPadding=0;
27--- 2966,2972 ----
28 int col, spaceWidth, len;
29 int columnWidths[2];
30 char_u *label, *text;
31! int acLen = 0;
32 int nameLen;
33 int padding0, padding1, padding2 = 0;
34 int sepPadding=0;
35***************
36*** 3262,3268 ****
37 /*
38 * Reassert ourselves as the active window. This is so that after creating
39 * a tearoff, the user doesn't have to click with the mouse just to start
40! * typing agin!
41 */
42 (void)SetActiveWindow(s_hwnd);
43
44--- 3262,3268 ----
45 /*
46 * Reassert ourselves as the active window. This is so that after creating
47 * a tearoff, the user doesn't have to click with the mouse just to start
48! * typing again!
49 */
50 (void)SetActiveWindow(s_hwnd);
51
52*** ../vim-6.2.274/src/version.c Thu Feb 19 15:14:04 2004
53--- src/version.c Thu Feb 19 15:16:17 2004
54***************
55*** 639,640 ****
56--- 639,642 ----
57 { /* Add new patch number below this line */
58+ /**/
59+ 275,
60 /**/
61
62--
63hundred-and-one symptoms of being an internet addict:
64189. You put your e-mail address in the upper left-hand corner of envelopes.
65
66 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
67/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
68\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
69 \\\ Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html ///
This page took 0.095527 seconds and 4 git commands to generate.