comparison src/globals.h @ 17922:4d63d47d87ef v8.1.1957

patch 8.1.1957: more code can be moved to evalvars.c Commit: https://github.com/vim/vim/commit/da6c03342117fb7f4a8110bd9e8627b612a05a64 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 1 16:01:30 2019 +0200 patch 8.1.1957: more code can be moved to evalvars.c Problem: More code can be moved to evalvars.c. Solution: Move code to where it fits better. (Yegappan Lakshmanan, closes #4883)
author Bram Moolenaar <Bram@vim.org>
date Sun, 01 Sep 2019 16:15:03 +0200
parents d50a5faa75bd
children 079e10a49ea1
comparison
equal deleted inserted replaced
17921:14be395d672c 17922:4d63d47d87ef
189 EXTERN int emsg_skip INIT(= 0); // don't display errors for 189 EXTERN int emsg_skip INIT(= 0); // don't display errors for
190 // expression that is skipped 190 // expression that is skipped
191 EXTERN int emsg_severe INIT(= FALSE); // use message of next of several 191 EXTERN int emsg_severe INIT(= FALSE); // use message of next of several
192 // emsg() calls for throw 192 // emsg() calls for throw
193 EXTERN int did_endif INIT(= FALSE); // just had ":endif" 193 EXTERN int did_endif INIT(= FALSE); // just had ":endif"
194 EXTERN dict_T vimvardict; // Dictionary with v: variables
195 EXTERN dict_T globvardict; // Dictionary with g: variables
196 #define globvarht globvardict.dv_hashtab
197 #endif 194 #endif
198 EXTERN int did_emsg; // set by emsg() when the message 195 EXTERN int did_emsg; // set by emsg() when the message
199 // is displayed or thrown 196 // is displayed or thrown
200 #ifdef FEAT_EVAL 197 #ifdef FEAT_EVAL
201 EXTERN int called_vim_beep; // set if vim_beep() is called 198 EXTERN int called_vim_beep; // set if vim_beep() is called