comparison src/evalfunc.c @ 13123:aaead5b4d77d v8.0.1436

patch 8.0.1436: not enough information about what Python version may work commit https://github.com/vim/vim/commit/84b242c369a22b581c43de9de0152f0baedd71ab Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 28 17:45:49 2018 +0100 patch 8.0.1436: not enough information about what Python version may work Problem: Not enough information about what Python version may work. Solution: Add "python_compiled", "python3_compiled", "python_dynamic" and "python3_dynamic" values for has().
author Christian Brabandt <cb@256bit.org>
date Sun, 28 Jan 2018 18:00:06 +0100
parents 9b3f8029a326
children a80490493c6b
comparison
equal deleted inserted replaced
13122:98e36d17f67d 13123:aaead5b4d77d
5914 #endif 5914 #endif
5915 #endif 5915 #endif
5916 #ifdef FEAT_PERSISTENT_UNDO 5916 #ifdef FEAT_PERSISTENT_UNDO
5917 "persistent_undo", 5917 "persistent_undo",
5918 #endif 5918 #endif
5919 #if defined(FEAT_PYTHON) && !defined(DYNAMIC_PYTHON) 5919 #if defined(FEAT_PYTHON)
5920 "python_compiled",
5921 # if defined(DYNAMIC_PYTHON)
5922 "python_dynamic",
5923 # else
5920 "python", 5924 "python",
5921 "pythonx", 5925 "pythonx",
5922 #endif 5926 # endif
5923 #if defined(FEAT_PYTHON3) && !defined(DYNAMIC_PYTHON3) 5927 #endif
5928 #if defined(FEAT_PYTHON3)
5929 "python3_compiled",
5930 # if defined(DYNAMIC_PYTHON3)
5931 "python3_dynamic",
5932 # else
5924 "python3", 5933 "python3",
5925 "pythonx", 5934 "pythonx",
5935 # endif
5926 #endif 5936 #endif
5927 #ifdef FEAT_POSTSCRIPT 5937 #ifdef FEAT_POSTSCRIPT
5928 "postscript", 5938 "postscript",
5929 #endif 5939 #endif
5930 #ifdef FEAT_PRINTER 5940 #ifdef FEAT_PRINTER