summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2007-12-07 16:09:32 +0000
committervimboss <devnull@localhost>2007-12-07 16:09:32 +0000
commitae9915ffb6a94ed071f9017104e533b5ca4a2131 (patch)
treee834fb22114c24cf20f06403ee71646188073517
parentda8b8230e613d1c3d1b91106e4399d47579c9a09 (diff)
downloadvim-ae9915ffb6a94ed071f9017104e533b5ca4a2131.tar.gz
updated for version 7.1-169v7.1.169v7-1-169
-rw-r--r--src/eval.c4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c
index 80b206a0..8f6fcf37 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -15826,7 +15826,7 @@ f_system(argvars, rettv)
FILE *fd;
if (check_restricted() || check_secure())
- return;
+ goto done;
if (argvars[1].v_type != VAR_UNKNOWN)
{
@@ -15837,7 +15837,7 @@ f_system(argvars, rettv)
if ((infile = vim_tempname('i')) == NULL)
{
EMSG(_(e_notmp));
- return;
+ goto done;
}
fd = mch_fopen((char *)infile, WRITEBIN);
diff --git a/src/version.c b/src/version.c
index 1ae453c3..240fd891 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 169,
+/**/
168,
/**/
167,