]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.0-112 v7.0.112
authorBram Moolenaar <Bram@vim.org>
Tue, 3 Oct 2006 13:02:36 +0000 (13:02 +0000)
committerBram Moolenaar <Bram@vim.org>
Tue, 3 Oct 2006 13:02:36 +0000 (13:02 +0000)
src/if_python.c
src/version.c

index e0fd3488485f64f723a6e9f629923391225083b2..adcb52d2bdb97577210d887823a8277805cb2423 100644 (file)
@@ -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
index f508b37c313434fa758edb32dd9183656acedadb..6fdf156d7ce8ba28b29f56b77ee416b357693209 100644 (file)
@@ -666,6 +666,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    112,
 /**/
     111,
 /**/