diff src/if_python3.c @ 6569:7fa1a7359a56 v7.4.611

updated for version 7.4.611 Problem: Syntax error. Solution: Change statement to return.
author Bram Moolenaar <bram@vim.org>
date Tue, 03 Feb 2015 13:16:04 +0100
parents 38add5a3d617
children 43ac8dc380c7
line wrap: on
line diff
--- 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);
 }