summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-09-17 21:08:33 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-17 21:08:33 +0100
commit73e28dcc6125f616cf1f2d56443d22428a79e434 (patch)
treebc26b3d1bb2e1675b7dae14b6c9cda1cd42c90d6 /src/feature.h
parent1c3dd8ddcba63c1af5112e567215b3cec2de11d0 (diff)
patch 9.0.0491: no good reason to build without the float featurev9.0.0491
Problem: No good reason to build without the float feature. Solution: Remove configure check for float and "#ifdef FEAT_FLOAT".
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/feature.h b/src/feature.h
index 26296d337e..5eacd5e953 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -121,6 +121,7 @@
* +wildignore 'wildignore' and 'backupskip' options
* +wildmenu 'wildmenu' option
* +builtin_terms all builtin termcap entries included
+ * +float Floating point variables.
*
* Obsolete:
* +tag_old_static Old style static tags: "file:tag file ..".
@@ -251,13 +252,9 @@
/*
* +eval Built-in script language and expression evaluation,
* ":let", ":if", etc.
- * +float Floating point variables.
*/
#ifdef FEAT_NORMAL
# define FEAT_EVAL
-# if defined(HAVE_FLOAT_FUNCS) || defined(MSWIN) || defined(MACOS_X)
-# define FEAT_FLOAT
-# endif
#endif
#ifdef FEAT_EVAL