mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.3.132
Problem: C++ style comments. Solution: Change to C comments.
This commit is contained in:
@@ -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>
|
||||
|
Reference in New Issue
Block a user