diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-01 16:01:30 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-01 16:01:30 +0200 |
commit | da6c03342117fb7f4a8110bd9e8627b612a05a64 (patch) | |
tree | 978562abf59627127149d50d9f2650a69e78c078 /src/viminfo.c | |
parent | 0fdddeeb66bbe326860ddfc573eba42f6487bbda (diff) | |
download | vim-git-da6c03342117fb7f4a8110bd9e8627b612a05a64.tar.gz |
patch 8.1.1957: more code can be moved to evalvars.cv8.1.1957
Problem: More code can be moved to evalvars.c.
Solution: Move code to where it fits better. (Yegappan Lakshmanan,
closes #4883)
Diffstat (limited to 'src/viminfo.c')
-rw-r--r-- | src/viminfo.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/viminfo.c b/src/viminfo.c index 608c5cc75..276e1b3bf 100644 --- a/src/viminfo.c +++ b/src/viminfo.c @@ -1277,6 +1277,7 @@ read_viminfo_varlist(vir_T *virp, int writing) static void write_viminfo_varlist(FILE *fp) { + hashtab_T *gvht = get_globvar_ht(); hashitem_T *hi; dictitem_T *this_var; int todo; @@ -1290,8 +1291,8 @@ write_viminfo_varlist(FILE *fp) fputs(_("\n# global variables:\n"), fp); - todo = (int)globvarht.ht_used; - for (hi = globvarht.ht_array; todo > 0; ++hi) + todo = (int)gvht->ht_used; + for (hi = gvht->ht_array; todo > 0; ++hi) { if (!HASHITEM_EMPTY(hi)) { |