diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-11-06 14:17:16 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-11-06 14:17:16 +0100 |
commit | 98500fdc6119eb5f02d7a52ab6ffcac3085181be (patch) | |
tree | e48f9e1c38cde2e2b163f584707bdf5408b7436e /src/json.c | |
parent | 4a08b0dc4dd70334056fc1bf069b5e938f2ed7d5 (diff) | |
download | vim-git-98500fdc6119eb5f02d7a52ab6ffcac3085181be.tar.gz |
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.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/json.c b/src/json.c index 7c1181ca5..36d47aa99 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); |