summaryrefslogtreecommitdiff
path: root/src/if_python3.c
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/if_python3.c
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/if_python3.c')
-rw-r--r--src/if_python3.c2
1 files changed, 1 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);
}