diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-02-17 22:12:50 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-02-17 22:12:50 +0100 |
commit | 82f654e092ac5b86316bc1b30c0b07a849813186 (patch) | |
tree | 8a6ba00df3ea0f536d4fe559f0f6093146466062 /src/feature.h | |
parent | bc2b71d44a0b90b6aeb3534a76912fccbe5577df (diff) | |
download | vim-git-82f654e092ac5b86316bc1b30c0b07a849813186.tar.gz |
patch 8.2.0271: the "num64" feature is available everywherev8.2.0271
Problem: The "num64" feature is available everywhere and building without
it causes problems.
Solution: Graduage the "num64" feature. (James McCoy, closes #5650)
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/feature.h b/src/feature.h index 7e1e982ed..b25837e1f 100644 --- a/src/feature.h +++ b/src/feature.h @@ -285,16 +285,12 @@ * +eval Built-in script language and expression evaluation, * ":let", ":if", etc. * +float Floating point variables. - * +num64 64-bit Number. */ #ifdef FEAT_NORMAL # define FEAT_EVAL # if defined(HAVE_FLOAT_FUNCS) || defined(MSWIN) || defined(MACOS_X) # define FEAT_FLOAT # endif -# if defined(HAVE_STDINT_H) || defined(MSWIN) || (VIM_SIZEOF_LONG >= 8) -# define FEAT_NUM64 -# endif #endif #ifdef FEAT_EVAL |