• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revisión8fd2e00c44ae10bd9e8a8f5c12db47378314457a (tree)
Tiempo2006-10-03 22:02:36
Autorvimboss
Commitervimboss

Log Message

updated for version 7.0-112

Cambiar Resumen

Diferencia incremental

diff -r 656853d9c014 -r 8fd2e00c44ae src/if_python.c
--- a/src/if_python.c Tue Oct 03 12:44:42 2006 +0000
+++ b/src/if_python.c Tue Oct 03 13:02:36 2006 +0000
@@ -1463,7 +1463,7 @@
14631463 if (this->buf && this->buf != INVALID_BUFFER_VALUE)
14641464 this->buf->b_python_ref = NULL;
14651465
1466- PyMem_DEL(self);
1466+ Py_DECREF(self);
14671467 }
14681468
14691469 static PyObject *
@@ -1674,7 +1674,7 @@
16741674 bufr = (BufferObject *)BufferNew(buf);
16751675 if (bufr == NULL)
16761676 {
1677- PyMem_DEL(self);
1677+ Py_DECREF(self);
16781678 return NULL;
16791679 }
16801680 Py_INCREF(bufr);
@@ -1690,7 +1690,7 @@
16901690 RangeDestructor(PyObject *self)
16911691 {
16921692 Py_DECREF(((RangeObject *)(self))->buf);
1693- PyMem_DEL(self);
1693+ Py_DECREF(self);
16941694 }
16951695
16961696 static PyObject *
@@ -1944,7 +1944,7 @@
19441944 if (this->win && this->win != INVALID_WINDOW_VALUE)
19451945 this->win->w_python_ref = NULL;
19461946
1947- PyMem_DEL(self);
1947+ Py_DECREF(self);
19481948 }
19491949
19501950 static int
diff -r 656853d9c014 -r 8fd2e00c44ae src/version.c
--- a/src/version.c Tue Oct 03 12:44:42 2006 +0000
+++ b/src/version.c Tue Oct 03 13:02:36 2006 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 112,
671+/**/
670672 111,
671673 /**/
672674 110,
Show on old repository browser