comparison src/globals.h @ 21859:3e5d0832a2e7 v8.2.1479

patch 8.2.1479: Vim9: error for list index uses wrong line number Commit: https://github.com/vim/vim/commit/1d634542cf5ebcd1d5d83bd124b3e1d5e7c96c58 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 18 13:41:50 2020 +0200 patch 8.2.1479: Vim9: error for list index uses wrong line number Problem: Vim9: error for list index uses wrong line number. Solution: Set source line number. (closes https://github.com/vim/vim/issues/6724) Add a way to assert the line number of the error with assert_fails().
author Bram Moolenaar <Bram@vim.org>
date Tue, 18 Aug 2020 13:45:04 +0200
parents 0deb6f96a5a3
children a98211c3e14e
comparison
equal deleted inserted replaced
21858:10d05fa7d7a9 21859:3e5d0832a2e7
221 EXTERN int emsg_severe INIT(= FALSE); // use message of next of several 221 EXTERN int emsg_severe INIT(= FALSE); // use message of next of several
222 // emsg() calls for throw 222 // emsg() calls for throw
223 // used by assert_fails() 223 // used by assert_fails()
224 EXTERN int emsg_assert_fails_used INIT(= FALSE); 224 EXTERN int emsg_assert_fails_used INIT(= FALSE);
225 EXTERN char_u *emsg_assert_fails_msg INIT(= NULL); 225 EXTERN char_u *emsg_assert_fails_msg INIT(= NULL);
226 EXTERN long emsg_assert_fails_lnum INIT(= 0);
226 227
227 EXTERN int did_endif INIT(= FALSE); // just had ":endif" 228 EXTERN int did_endif INIT(= FALSE); // just had ":endif"
228 #endif 229 #endif
229 EXTERN int did_emsg; // set by emsg() when the message 230 EXTERN int did_emsg; // set by emsg() when the message
230 // is displayed or thrown 231 // is displayed or thrown