diff options
-rw-r--r-- | src/if_python3.c | 7 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/if_python3.c b/src/if_python3.c index f8dafd2f0..4067517ac 100644 --- a/src/if_python3.c +++ b/src/if_python3.c @@ -657,7 +657,7 @@ static Py_ssize_t RangeEnd; static PyObject *globals; static int PythonIO_Init(void); -PyMODINIT_FUNC Py3Init_vim(void); +static PyObject *Py3Init_vim(void); /****************************************************** * 1. Python interpreter main program. @@ -1773,8 +1773,8 @@ PyDoc_STRVAR(vim_module_doc,"vim python interface\n"); static struct PyModuleDef vimmodule; -#ifndef PROTO -PyMODINIT_FUNC Py3Init_vim(void) + static PyObject * +Py3Init_vim(void) { PyObject *mod; PyObject *tmp; @@ -1824,7 +1824,6 @@ PyMODINIT_FUNC Py3Init_vim(void) return mod; } -#endif /************************************************************************* * 4. Utility functions for handling the interface between Vim and Python. diff --git a/src/version.c b/src/version.c index 8163dbe04..c060e1ae9 100644 --- a/src/version.c +++ b/src/version.c @@ -726,6 +726,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 731, +/**/ 730, /**/ 729, |