]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.004
- new
[packages/vim.git] / 7.0.004
CommitLineData
5ee5dc07
AM
1To: vim-dev@vim.org
2Subject: Patch 7.0.004
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 7.0.004
11Problem: Compiler warning for debug_saved used before set. (Todd Blumer)
12Solution: Remove the "else" for calling save_dbg_stuff().
13Files: 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--
46From "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.05428 seconds and 4 git commands to generate.