diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-01-28 16:06:38 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-01-28 16:06:38 +0100 |
commit | f42dd3c3901ea0ba38e67a616aea9953cae81b8d (patch) | |
tree | 3626ca40161dbfaa5e72a4dbeaa46b24480ddc8c /src/option.h | |
parent | 0c0590d9827cb07a33c1552cb3558b94bddcb4dc (diff) | |
download | vim-git-f42dd3c3901ea0ba38e67a616aea9953cae81b8d.tar.gz |
patch 8.0.0251: not easy to select Python 2 or 3v8.0.0251
Problem: It is not so easy to write a script that works with both Python 2
and Python 3, even when the Python code works with both.
Solution: Add 'pyxversion', :pyx, etc. (Marc Weber, Ken Takata)
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/option.h b/src/option.h index 0ad2fef64..62e66cd3d 100644 --- a/src/option.h +++ b/src/option.h @@ -694,6 +694,9 @@ EXTERN char_u *p_py3dll; /* 'pythonthreedll' */ #if defined(DYNAMIC_PYTHON) EXTERN char_u *p_pydll; /* 'pythondll' */ #endif +#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) +EXTERN long p_pyx; /* 'pyxversion' */ +#endif #ifdef FEAT_RELTIME EXTERN long p_rdt; /* 'redrawtime' */ #endif |