diff options
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index f5b6b3d668..45a31ce6b0 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -178,8 +178,8 @@ EXTERN long emsg_assert_fails_lnum INIT( = 0); EXTERN char *emsg_assert_fails_context INIT( = NULL); EXTERN bool did_endif INIT( = false); // just had ":endif" -EXTERN dict_T vimvardict; // Dictionary with v: variables -EXTERN dict_T globvardict; // Dictionary with g: variables +EXTERN dict_T vimvardict; // Dict with v: variables +EXTERN dict_T globvardict; // Dict with g: variables /// g: value #define globvarht globvardict.dv_hashtab EXTERN int did_emsg; // incremented by emsg() when a |