comparison src/globals.h @ 17458:cfdef48743ed v8.1.1727

patch 8.1.1727: code for viminfo support is spread out commit https://github.com/vim/vim/commit/defa067c54874dd987121dd7252c62755e0aebfa Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 21 19:25:37 2019 +0200 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 https://github.com/vim/vim/issues/4686)
author Bram Moolenaar <Bram@vim.org>
date Sun, 21 Jul 2019 19:30:06 +0200
parents 5462bb963075
children dfd87ef822aa
comparison
equal deleted inserted replaced
17457:3a368ff28a0b 17458:cfdef48743ed
188 EXTERN int emsg_severe INIT(= FALSE); /* use message of next of several 188 EXTERN int emsg_severe INIT(= FALSE); /* use message of next of several
189 emsg() calls for throw */ 189 emsg() calls for throw */
190 EXTERN int did_endif INIT(= FALSE); /* just had ":endif" */ 190 EXTERN int did_endif INIT(= FALSE); /* just had ":endif" */
191 EXTERN dict_T vimvardict; /* Dictionary with v: variables */ 191 EXTERN dict_T vimvardict; /* Dictionary with v: variables */
192 EXTERN dict_T globvardict; /* Dictionary with g: variables */ 192 EXTERN dict_T globvardict; /* Dictionary with g: variables */
193 #define globvarht globvardict.dv_hashtab
193 #endif 194 #endif
194 EXTERN int did_emsg; /* set by emsg() when the message 195 EXTERN int did_emsg; /* set by emsg() when the message
195 is displayed or thrown */ 196 is displayed or thrown */
196 #ifdef FEAT_EVAL 197 #ifdef FEAT_EVAL
197 EXTERN int called_vim_beep; /* set if vim_beep() is called */ 198 EXTERN int called_vim_beep; /* set if vim_beep() is called */