# HG changeset patch # User Christian Brabandt # Date 1455626705 -3600 # Node ID 3b01272878513860c1ecad0119b8502e2b545e08 # Parent dadd504182757a86afef5f4cf4018d0fd18f4260 commit https://github.com/vim/vim/commit/acd58ef676bb9559ac0f635f66b62f4602929c87 Author: Bram Moolenaar Date: Tue Feb 16 13:42:24 2016 +0100 patch 7.4.1332 Problem: Problem using Python3 when compiled with MingW. Solution: Define PYTHON3_HOME as a wide character string. (Yasuhiro Matsumoto) diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak --- a/src/Make_cyg_ming.mak +++ b/src/Make_cyg_ming.mak @@ -264,7 +264,7 @@ ifndef DYNAMIC_PYTHON3_DLL DYNAMIC_PYTHON3_DLL=python$(PYTHON3_VER).dll endif ifdef PYTHON3_HOME -PYTHON3_HOME_DEF=-DPYTHON3_HOME=\"$(PYTHON3_HOME)\" +PYTHON3_HOME_DEF=-DPYTHON3_HOME=L\"$(PYTHON3_HOME)\" endif ifeq (no,$(DYNAMIC_PYTHON3)) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -748,6 +748,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1332, +/**/ 1331, /**/ 1330,