From de5e2c219b99895445fb75ae3541ee69282a5846 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 4 Nov 2016 20:35:31 +0100 Subject: patch 8.0.0059 Problem: Vim does not build on VMS systems. Solution: Various changes for VMS. (Zoltan Arpadffy) --- src/json.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/json.c') diff --git a/src/json.c b/src/json.c index 36d47aa99..7c1181ca5 100644 --- a/src/json.c +++ b/src/json.c @@ -16,6 +16,10 @@ #include "vim.h" +#ifdef VAX +# undef FEAT_FLOAT // VAX does not handle well the Infinities +#endif + #if defined(FEAT_EVAL) || defined(PROTO) static int json_encode_item(garray_T *gap, typval_T *val, int copyID, int options); -- cgit v1.2.1