]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.287
- new
[packages/vim.git] / 7.2.287
CommitLineData
eafbe892
AG
1To: vim-dev@vim.org
2Subject: Patch 7.2.287
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.2.287
11Problem: Warning from gcc 3.4 about uninitialized variable.
12Solution: Move assignment outside of #ifdef.
13Files: src/if_perl.xs
14
15
16*** ../vim-7.2.286/src/if_perl.xs 2009-07-14 16:05:14.000000000 +0200
17--- src/if_perl.xs 2009-11-11 12:29:32.000000000 +0100
18***************
19*** 720,727 ****
20 #ifdef HAVE_SANDBOX
21 if (sandbox)
22 {
23 # ifndef MAKE_TEST /* avoid a warning for unreachable code */
24! if ((safe = perl_get_sv( "VIM::safe", FALSE )) == NULL || !SvTRUE(safe))
25 EMSG(_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
26 else
27 # endif
28--- 720,728 ----
29 #ifdef HAVE_SANDBOX
30 if (sandbox)
31 {
32+ safe = perl_get_sv( "VIM::safe", FALSE );
33 # ifndef MAKE_TEST /* avoid a warning for unreachable code */
34! if (safe == NULL || !SvTRUE(safe))
35 EMSG(_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
36 else
37 # endif
38*** ../vim-7.2.286/src/version.c 2009-11-11 14:21:48.000000000 +0100
39--- src/version.c 2009-11-11 14:44:49.000000000 +0100
40***************
41*** 683,684 ****
42--- 683,686 ----
43 { /* Add new patch number below this line */
44+ /**/
45+ 287,
46 /**/
47
48--
49The most powerful force in the universe is gossip.
50
51 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
52/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
53\\\ download, build and distribute -- http://www.A-A-P.org ///
54 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.034632 seconds and 4 git commands to generate.