commit | 22fcfad29276bd5f317faf516637dcd491b96a12 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Jul 01 18:17:26 2016 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Jul 01 18:17:26 2016 +0200 |
tree | 5787f5e2134b066406fd0d222c4f2f0d18e28024 | |
parent | 8767f52fbfd4f053ce00a978227c95f1d7d323fe [diff] [blame] |
patch 7.4.1976 Problem: Number variables are not 64 bits while they could be. Solution: Add the num64 feature. (Ken Takata)
diff --git a/src/fileio.c b/src/fileio.c index 1304190..621281e 100644 --- a/src/fileio.c +++ b/src/fileio.c
@@ -9481,7 +9481,7 @@ #ifdef FEAT_EVAL /* set v:cmdarg (only when there is a matching pattern) */ - save_cmdbang = get_vim_var_nr(VV_CMDBANG); + save_cmdbang = (long)get_vim_var_nr(VV_CMDBANG); if (eap != NULL) { save_cmdarg = set_cmdarg(eap, NULL);