summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2015-02-03 13:16:04 +0100
committerBram Moolenaar <Bram@vim.org>2015-02-03 13:16:04 +0100
commitb641df49655bb34762b44aa8c6e03e5f464f73d6 (patch)
treeb9800dc3fcfb2c4f7b24167937ad21bb8b1940d5 /src
parent016154919e317a8ce2b7f2e33db2f39ca3a8edb9 (diff)
downloadvim-git-b641df49655bb34762b44aa8c6e03e5f464f73d6.tar.gz
updated for version 7.4.611v7.4.611
Problem: Syntax error. Solution: Change statement to return.
Diffstat (limited to 'src')
-rw-r--r--src/if_python3.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/if_python3.c b/src/if_python3.c
index 300c24f66..e1fc5c77d 100644
--- a/src/if_python3.c
+++ b/src/if_python3.c
@@ -1652,5 +1652,5 @@ do_py3eval (char_u *str, typval_T *rettv)
int
set_ref_in_python3 (int copyID)
{
- int set_ref_in_py(copyID);
+ return set_ref_in_py(copyID);
}
diff --git a/src/version.c b/src/version.c
index 5f6af8c85..a35367fec 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 611,
+/**/
610,
/**/
609,