summaryrefslogtreecommitdiff
path: root/src/if_python.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-02-23 22:52:40 +0100
committerBram Moolenaar <Bram@vim.org>2014-02-23 22:52:40 +0100
commita2aa31a9269641839178b0c0663dc67405c33d3e (patch)
treefba5b26febe0f352a4ad0a9cace397f479ced86c /src/if_python.c
parent7d311c52ce2859f67532e0a4b604eb8147473c01 (diff)
downloadvim-git-a2aa31a9269641839178b0c0663dc67405c33d3e.tar.gz
updated for version 7.4.188v7.4.188
Problem: SIZEOF_LONG clashes with similar defines in header files. Solution: Rename to a name starting with VIM_. Also for SIZEOF_INT.
Diffstat (limited to 'src/if_python.c')
-rw-r--r--src/if_python.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_python.c b/src/if_python.c
index 02dc8ed38..34a75a636 100644
--- a/src/if_python.c
+++ b/src/if_python.c
@@ -613,7 +613,7 @@ static struct
# endif
# endif
# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02050000 \
- && SIZEOF_SIZE_T != SIZEOF_INT
+ && SIZEOF_SIZE_T != VIM_SIZEOF_INT
# ifdef Py_DEBUG
{"Py_InitModule4TraceRefs_64", (PYTHON_PROC*)&dll_Py_InitModule4},
# else