patch 8.1.1727: code for viminfo support is spread out
Problem: Code for viminfo support is spread out.
Solution: Move to code to viminfo.c. (Yegappan Lakshmanan, closes #4686)
diff --git a/src/globals.h b/src/globals.h
index b7a2ec1..d552001 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -190,6 +190,7 @@
EXTERN int did_endif INIT(= FALSE); /* just had ":endif" */
EXTERN dict_T vimvardict; /* Dictionary with v: variables */
EXTERN dict_T globvardict; /* Dictionary with g: variables */
+#define globvarht globvardict.dv_hashtab
#endif
EXTERN int did_emsg; /* set by emsg() when the message
is displayed or thrown */