commit | bc4c505166dc82911553206bb0c2133c6ac94aa1 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Aug 13 22:47:35 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Aug 13 22:47:35 2020 +0200 |
tree | 14a6624ace74cef5d79c55c818012042fef3d03e | |
parent | cdd70f09a5340c3d7ae873f1aaaf9847f27410cc [diff] [blame] |
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.
diff --git a/src/vim9execute.c b/src/vim9execute.c index 98ae733..2197cca 100644 --- a/src/vim9execute.c +++ b/src/vim9execute.c
@@ -1457,7 +1457,7 @@ if (dict == NULL) { - emsg(_(e_dictnull)); + emsg(_(e_dictionary_not_set)); goto on_error; } if (key == NULL)