diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-12-31 21:03:23 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-12-31 21:03:23 +0100 |
commit | 1000565c3a2439c9a7c9759284814dbf3b8bc20d (patch) | |
tree | 357f2fbcb81da653f6786b30175f13e3882361b7 /src/if_python.c | |
parent | 2bf2417612879de627dcea1dbb22ee2199b16963 (diff) | |
download | vim-git-1000565c3a2439c9a7c9759284814dbf3b8bc20d.tar.gz |
patch 7.4.1012v7.4.1012
Problem: Vim overwrites the value of $PYTHONHOME.
Solution: Do not set $PYTHONHOME if it is already set. (Kazuki Sakamoto,
closes #500)
Diffstat (limited to 'src/if_python.c')
-rw-r--r-- | src/if_python.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/if_python.c b/src/if_python.c index 9d28df076..94b299e11 100644 --- a/src/if_python.c +++ b/src/if_python.c @@ -928,7 +928,10 @@ Python_Init(void) #endif #ifdef PYTHON_HOME - Py_SetPythonHome(PYTHON_HOME); +# ifdef DYNAMIC_PYTHON + if (mch_getenv((char_u *)"PYTHONHOME") == NULL) +# endif + Py_SetPythonHome(PYTHON_HOME); #endif init_structs(); |