Skip to content

Commit

Permalink
updated for version 7.2-287
Browse files Browse the repository at this point in the history
  • Loading branch information
vimboss committed Nov 11, 2009
1 parent fb48afe commit 01100ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/if_perl.xs
Expand Up @@ -720,8 +720,9 @@ ex_perl(eap)
#ifdef HAVE_SANDBOX
if (sandbox)
{
safe = perl_get_sv( "VIM::safe", FALSE );
# ifndef MAKE_TEST /* avoid a warning for unreachable code */
if ((safe = perl_get_sv( "VIM::safe", FALSE )) == NULL || !SvTRUE(safe))
if (safe == NULL || !SvTRUE(safe))
EMSG(_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
else
# endif
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -681,6 +681,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
287,
/**/
286,
/**/
Expand Down

0 comments on commit 01100ce

Please sign in to comment.