comparison src/vim9execute.c @ 21789:f84625b961a8 v8.2.1444

patch 8.2.1444: error messages are spread out and names can be confusing Commit: https://github.com/vim/vim/commit/bc4c505166dc82911553206bb0c2133c6ac94aa1 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Aug 13 22:47:35 2020 +0200 patch 8.2.1444: error messages are spread out and names can be confusing Problem: Error messages are spread out and names can be confusing. Solution: Start moving error messages to a separate file and use clear names.
author Bram Moolenaar <Bram@vim.org>
date Thu, 13 Aug 2020 23:00:04 +0200
parents 837e6a429950
children 0706bd071fa3
comparison
equal deleted inserted replaced
21788:acd6c7f8b633 21789:f84625b961a8
1455 dict_T *dict = tv_dict->vval.v_dict; 1455 dict_T *dict = tv_dict->vval.v_dict;
1456 dictitem_T *di; 1456 dictitem_T *di;
1457 1457
1458 if (dict == NULL) 1458 if (dict == NULL)
1459 { 1459 {
1460 emsg(_(e_dictnull)); 1460 emsg(_(e_dictionary_not_set));
1461 goto on_error; 1461 goto on_error;
1462 } 1462 }
1463 if (key == NULL) 1463 if (key == NULL)
1464 key = (char_u *)""; 1464 key = (char_u *)"";
1465 tv = STACK_TV_BOT(-3); 1465 tv = STACK_TV_BOT(-3);