summaryrefslogtreecommitdiffstats
path: root/src/json.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-11-06 14:17:16 +0100
committerBram Moolenaar <Bram@vim.org>2016-11-06 14:17:16 +0100
commit98500fdc6119eb5f02d7a52ab6ffcac3085181be (patch)
treee48f9e1c38cde2e2b163f584707bdf5408b7436e /src/json.c
parent4a08b0dc4dd70334056fc1bf069b5e938f2ed7d5 (diff)
patch 8.0.0067v8.0.0067
Problem: VMS has a problem with infinity. Solution: Avoid an overflow. (Zoltan Arpadffy)
Diffstat (limited to 'src/json.c')
-rw-r--r--src/json.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/json.c b/src/json.c
index 7c1181ca55..36d47aa99d 100644
--- a/src/json.c
+++ b/src/json.c
@@ -16,10 +16,6 @@
#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);