summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2006-10-03 13:02:36 +0000
committervimboss <devnull@localhost>2006-10-03 13:02:36 +0000
commit4393cedc56d6dbbce75f93f14b456fa181c8e5a1 (patch)
tree05f462ab35315bb1d39a0d99c8a4730f944ecabe
parentd31d099e03e3eb5527bbb12c38a47388702f5fb2 (diff)
downloadvim-4393cedc56d6dbbce75f93f14b456fa181c8e5a1.tar.gz
updated for version 7.0-112v7.0.112v7-0-112
-rw-r--r--src/if_python.c8
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 4 deletions
diff --git a/src/if_python.c b/src/if_python.c
index e0fd3488..adcb52d2 100644
--- a/src/if_python.c
+++ b/src/if_python.c
@@ -1463,7 +1463,7 @@ BufferDestructor(PyObject *self)
if (this->buf && this->buf != INVALID_BUFFER_VALUE)
this->buf->b_python_ref = NULL;
- PyMem_DEL(self);
+ Py_DECREF(self);
}
static PyObject *
@@ -1674,7 +1674,7 @@ RangeNew(buf_T *buf, int start, int end)
bufr = (BufferObject *)BufferNew(buf);
if (bufr == NULL)
{
- PyMem_DEL(self);
+ Py_DECREF(self);
return NULL;
}
Py_INCREF(bufr);
@@ -1690,7 +1690,7 @@ RangeNew(buf_T *buf, int start, int end)
RangeDestructor(PyObject *self)
{
Py_DECREF(((RangeObject *)(self))->buf);
- PyMem_DEL(self);
+ Py_DECREF(self);
}
static PyObject *
@@ -1944,7 +1944,7 @@ WindowDestructor(PyObject *self)
if (this->win && this->win != INVALID_WINDOW_VALUE)
this->win->w_python_ref = NULL;
- PyMem_DEL(self);
+ Py_DECREF(self);
}
static int
diff --git a/src/version.c b/src/version.c
index f508b37c..6fdf156d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 112,
+/**/
111,
/**/
110,