diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-07-01 18:17:26 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-07-01 18:17:26 +0200 |
commit | 22fcfad29276bd5f317faf516637dcd491b96a12 (patch) | |
tree | 5787f5e2134b066406fd0d222c4f2f0d18e28024 /src/version.c | |
parent | 8767f52fbfd4f053ce00a978227c95f1d7d323fe (diff) | |
download | vim-git-22fcfad29276bd5f317faf516637dcd491b96a12.tar.gz |
patch 7.4.1976v7.4.1976
Problem: Number variables are not 64 bits while they could be.
Solution: Add the num64 feature. (Ken Takata)
Diffstat (limited to 'src/version.c')
-rw-r--r-- | src/version.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c index 8a57ba883..78ea040ed 100644 --- a/src/version.c +++ b/src/version.c @@ -455,6 +455,11 @@ static char *(features[]) = #else "-netbeans_intg", #endif +#ifdef FEAT_NUM64 + "+num64", +#else + "-num64", +#endif #ifdef FEAT_GUI_W32 # ifdef FEAT_OLE "+ole", @@ -754,6 +759,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1976, +/**/ 1975, /**/ 1974, |