diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-11-30 13:34:23 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-11-30 13:34:23 +0100 |
commit | 0b105416066c95ade3604ec2139d8367d3c6e74e (patch) | |
tree | 00c20ce83fa5316d76e6df05b5755e3cbe5f156e /src/feature.h | |
parent | 76440e2efe9e3582e9943d01183ec8b2f3e4eb4b (diff) | |
download | vim-git-0b105416066c95ade3604ec2139d8367d3c6e74e.tar.gz |
updated for version 7.4.538v7.4.538
Problem: Tests fail with small features plus Python.
Solution: Disallow weird combination of options. Do not set "fdm" when
folding is disabled.
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/feature.h b/src/feature.h index 917179401..01f611e38 100644 --- a/src/feature.h +++ b/src/feature.h @@ -385,13 +385,6 @@ #endif /* - * +python and +python3 require FEAT_EVAL. - */ -#if !defined(FEAT_EVAL) && (defined(FEAT_PYTHON3) || defined(FEAT_PYTHON)) -# define FEAT_EVAL -#endif - -/* * +profile Profiling for functions and scripts. */ #if defined(FEAT_HUGE) \ |