summaryrefslogtreecommitdiff
path: root/src/if_python.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-05-12 19:45:35 +0200
committerBram Moolenaar <Bram@vim.org>2013-05-12 19:45:35 +0200
commit3d0c52db9c3e2019bc5fe84debe59c042c3da20b (patch)
treeb6e0c7cedc241b822a9aedd044ed3c0ba9cf1d62 /src/if_python.c
parent4e5dfb57002513735b771942492d6b03e137605a (diff)
downloadvim-git-3d0c52db9c3e2019bc5fe84debe59c042c3da20b.tar.gz
updated for version 7.3.941v7.3.941
Problem: Stuff in if_py_both.h is ordered badly. Solution: Reorder by type. (ZyX)
Diffstat (limited to 'src/if_python.c')
-rw-r--r--src/if_python.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/if_python.c b/src/if_python.c
index addb674c2..8e3621caf 100644
--- a/src/if_python.c
+++ b/src/if_python.c
@@ -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 *);