]> git.pld-linux.org Git - packages/vim.git/blob - 7.1.063
- updated to 7.1.326
[packages/vim.git] / 7.1.063
1 To: vim-dev@vim.org
2 Subject: patch 7.1.063
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 7.1.063 (after 7.1.040)
11 Problem:    Warning for unitialized variable.
12 Solution:   Initialise it to NULL.
13 Files:      src/ex_docmd.c
14
15
16 *** ../vim-7.1.062/src/ex_docmd.c       Thu Jul 26 22:55:11 2007
17 --- src/ex_docmd.c      Wed Aug  8 22:28:33 2007
18 ***************
19 *** 10817,10823 ****
20       exarg_T   *eap;
21   {
22       char_u    *p;
23 !     char_u    *g;
24       char_u    *end;
25       int               c;
26       int               id;
27 --- 10818,10824 ----
28       exarg_T   *eap;
29   {
30       char_u    *p;
31 !     char_u    *g = NULL;
32       char_u    *end;
33       int               c;
34       int               id;
35 *** ../vim-7.1.062/src/version.c        Sat Aug 11 14:32:10 2007
36 --- src/version.c       Sat Aug 11 15:58:55 2007
37 ***************
38 *** 668,669 ****
39 --- 668,671 ----
40   {   /* Add new patch number below this line */
41 + /**/
42 +     63,
43   /**/
44
45 -- 
46 hundred-and-one symptoms of being an internet addict:
47 124. You begin conversations with, "Who is your internet service provider?"
48
49  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
50 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
51 \\\        download, build and distribute -- http://www.A-A-P.org        ///
52  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.057644 seconds and 3 git commands to generate.