0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

updated for version 7.3.941

Problem:    Stuff in if_py_both.h is ordered badly.
Solution:   Reorder by type. (ZyX)
This commit is contained in:
Bram Moolenaar
2013-05-12 19:45:35 +02:00
parent 4e5dfb5700
commit 3d0c52db9c
3 changed files with 440 additions and 462 deletions

View File

@@ -1019,9 +1019,6 @@ static int ConvertFromPyObject(PyObject *, typval_T *);
#define BufferType_Check(obj) ((obj)->ob_type == &BufferType)
static PyInt BufferLength(PyObject *);
static PyObject *BufferItem(PyObject *, PyInt);
static PyObject *BufferSlice(PyObject *, PyInt, PyInt);
static PyInt BufferAssItem(PyObject *, PyInt, PyObject *);
static PyInt BufferAssSlice(PyObject *, PyInt, PyInt, PyObject *);