Problem: Py3Init_vim() is exported uneccessarily.
Solution: Make it static. (Ken Takata)
static PyObject *globals;
static int PythonIO_Init(void);
-PyMODINIT_FUNC Py3Init_vim(void);
+static PyObject *Py3Init_vim(void);
/******************************************************
* 1. Python interpreter main program.
static struct PyModuleDef vimmodule;
-#ifndef PROTO
-PyMODINIT_FUNC Py3Init_vim(void)
+ static PyObject *
+Py3Init_vim(void)
{
PyObject *mod;
PyObject *tmp;
return mod;
}
-#endif
/*************************************************************************
* 4. Utility functions for handling the interface between Vim and Python.
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 731,
/**/
730,
/**/