comparison src/feature.h @ 19427:fdfe44ac6a1a v8.2.0271

patch 8.2.0271: the "num64" feature is available everywhere Commit: https://github.com/vim/vim/commit/82f654e092ac5b86316bc1b30c0b07a849813186 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 17 22:12:50 2020 +0100 patch 8.2.0271: the "num64" feature is available everywhere Problem: The "num64" feature is available everywhere and building without it causes problems. Solution: Graduage the "num64" feature. (James McCoy, closes #5650)
author Bram Moolenaar <Bram@vim.org>
date Mon, 17 Feb 2020 22:15:07 +0100
parents ccd16426a1f9
children 22f0dda71638
comparison
equal deleted inserted replaced
19426:23bd41ec57fb 19427:fdfe44ac6a1a
283 283
284 /* 284 /*
285 * +eval Built-in script language and expression evaluation, 285 * +eval Built-in script language and expression evaluation,
286 * ":let", ":if", etc. 286 * ":let", ":if", etc.
287 * +float Floating point variables. 287 * +float Floating point variables.
288 * +num64 64-bit Number.
289 */ 288 */
290 #ifdef FEAT_NORMAL 289 #ifdef FEAT_NORMAL
291 # define FEAT_EVAL 290 # define FEAT_EVAL
292 # if defined(HAVE_FLOAT_FUNCS) || defined(MSWIN) || defined(MACOS_X) 291 # if defined(HAVE_FLOAT_FUNCS) || defined(MSWIN) || defined(MACOS_X)
293 # define FEAT_FLOAT 292 # define FEAT_FLOAT
294 # endif
295 # if defined(HAVE_STDINT_H) || defined(MSWIN) || (VIM_SIZEOF_LONG >= 8)
296 # define FEAT_NUM64
297 # endif 293 # endif
298 #endif 294 #endif
299 295
300 #ifdef FEAT_EVAL 296 #ifdef FEAT_EVAL
301 # define HAVE_SANDBOX 297 # define HAVE_SANDBOX