]> git.pld-linux.org Git - packages/vim.git/blob - 7.1.200
- updated to 7.1.285
[packages/vim.git] / 7.1.200
1 To: vim-dev@vim.org
2 Subject: Patch 7.1.200
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.200 (after 7.1.177 and 7.1.182)
11 Problem:    Compiler warnings for uninitialized variables.
12 Solution:   Init variables.
13 Files:      src/ex_cmds2.c, src/ex_docmd.c
14
15
16 *** ../vim-7.1.199/src/ex_cmds2.c       Tue Jan  1 14:16:42 2008
17 --- src/ex_cmds2.c      Fri Jan  4 15:55:54 2008
18 ***************
19 *** 94,100 ****
20       int               save_redir_off = redir_off;
21       tasave_T  typeaheadbuf;
22       int               typeahead_saved = FALSE;
23 !     int               save_ignore_script;
24   # ifdef FEAT_EX_EXTRA
25       int               save_ex_normal_busy;
26   # endif
27 --- 94,100 ----
28       int               save_redir_off = redir_off;
29       tasave_T  typeaheadbuf;
30       int               typeahead_saved = FALSE;
31 !     int               save_ignore_script = 0;
32   # ifdef FEAT_EX_EXTRA
33       int               save_ex_normal_busy;
34   # endif
35 *** ../vim-7.1.199/src/ex_docmd.c       Wed Jan  2 21:07:32 2008
36 --- src/ex_docmd.c      Fri Jan  4 15:57:28 2008
37 ***************
38 *** 9765,9771 ****
39       win_T     *tab_firstwin;
40       frame_T   *tab_topframe;
41       int               cur_arg_idx = 0;
42 !     int               next_arg_idx;
43   
44       if (ssop_flags & SSOP_BUFFERS)
45         only_save_windows = FALSE;              /* Save ALL buffers */
46 --- 9766,9772 ----
47       win_T     *tab_firstwin;
48       frame_T   *tab_topframe;
49       int               cur_arg_idx = 0;
50 !     int               next_arg_idx = 0;
51   
52       if (ssop_flags & SSOP_BUFFERS)
53         only_save_windows = FALSE;              /* Save ALL buffers */
54 *** ../vim-7.1.199/src/version.c        Fri Jan  4 15:16:57 2008
55 --- src/version.c       Fri Jan  4 15:59:46 2008
56 ***************
57 *** 668,669 ****
58 --- 668,671 ----
59   {   /* Add new patch number below this line */
60 + /**/
61 +     200,
62   /**/
63
64 -- 
65 ARTHUR:  I did say sorry about the `old woman,' but from the behind you
66          looked--
67 DENNIS:  What I object to is you automatically treat me like an inferior!
68 ARTHUR:  Well, I AM king...
69                                   The Quest for the Holy Grail (Monty Python)
70
71  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
72 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
73 \\\        download, build and distribute -- http://www.A-A-P.org        ///
74  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.086705 seconds and 3 git commands to generate.