summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2011-02-25 15:18:50 +0100
committerBram Moolenaar <bram@vim.org>2011-02-25 15:18:50 +0100
commitb872de7e3213b44f509e24a2db65538e9142beb0 (patch)
treefb40f26c9dbb1028a776f2886dca4e6ef134d8ec
parentf697a8172498d00a8ec841be899996649fbca9ec (diff)
downloadvim-b872de7e3213b44f509e24a2db65538e9142beb0.tar.gz
updated for version 7.3.132v7.3.132v7-3-132
Problem: C++ style comments. Solution: Change to C comments.
-rw-r--r--src/if_python3.c6
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 3 deletions
diff --git a/src/if_python3.c b/src/if_python3.c
index 7f3f0f27..91d3f65c 100644
--- a/src/if_python3.c
+++ b/src/if_python3.c
@@ -22,8 +22,8 @@
* Adaptations to support both python3.x and python2.x
*/
-// uncomment this if used with the debug version of python
-// #define Py_DEBUG
+/* uncomment this if used with the debug version of python */
+/* #define Py_DEBUG */
#include "vim.h"
@@ -74,7 +74,7 @@ static void init_structs(void);
#define PyString_Size(obj) PyUnicode_GET_SIZE(obj)
#define PyString_FromString(repr) PyUnicode_FromString(repr)
-#if defined(DYNAMIC_PYTHON3)
+#if defined(DYNAMIC_PYTHON3) || defined(PROTO)
# ifndef WIN3264
# include <dlfcn.h>
diff --git a/src/version.c b/src/version.c
index 030ceece..a6168608 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 132,
+/**/
131,
/**/
130,