]> git.pld-linux.org Git - packages/vim.git/blob - 7.0.004
- new
[packages/vim.git] / 7.0.004
1 To: vim-dev@vim.org
2 Subject: Patch 7.0.004
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.0.004
11 Problem:    Compiler warning for debug_saved used before set. (Todd Blumer)
12 Solution:   Remove the "else" for calling save_dbg_stuff().
13 Files:      src/ex_docmd.c
14
15
16 *** ../vim-7.0.003/src/ex_docmd.c       Wed May 10 15:22:49 2006
17 --- src/ex_docmd.c      Mon May  8 16:43:34 2006
18 ***************
19 *** 833,839 ****
20        * If requested, store and reset the global values controlling the
21        * exception handling (used when debugging).
22        */
23 !     else if (flags & DOCMD_EXCRESET)
24         save_dbg_stuff(&debug_saved);
25   
26       initial_trylevel = trylevel;
27 --- 833,839 ----
28        * If requested, store and reset the global values controlling the
29        * exception handling (used when debugging).
30        */
31 !     if (flags & DOCMD_EXCRESET)
32         save_dbg_stuff(&debug_saved);
33   
34       initial_trylevel = trylevel;
35 *** ../vim-7.0.003/src/version.c        Wed May 10 17:12:51 2006
36 --- src/version.c       Wed May 10 17:14:34 2006
37 ***************
38 *** 668,669 ****
39 --- 668,671 ----
40   {   /* Add new patch number below this line */
41 + /**/
42 +     4,
43   /**/
44
45 -- 
46 From "know your smileys":
47  :-D    Big smile
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.028553 seconds and 3 git commands to generate.