diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-02 20:20:45 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-02 20:20:45 +0000 |
commit | b09feaa86ecc53b9b953710082496951776dc5c6 (patch) | |
tree | 0baf02c96c94c26072e9afdb833e638c3ab1a9cb /src/map.c | |
parent | ac78dd4a352196ca4e6640f8e4caaf126afd49e3 (diff) | |
download | vim-git-b09feaa86ecc53b9b953710082496951776dc5c6.tar.gz |
patch 8.2.3986: error messages are spread outv8.2.3986
Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/map.c')
-rw-r--r-- | src/map.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2374,7 +2374,7 @@ f_mapset(typval_T *argvars, typval_T *rettv UNUSED) rhs = dict_get_string(d, (char_u *)"rhs", FALSE); if (lhs == NULL || lhsraw == NULL || rhs == NULL) { - emsg(_("E460: entries missing in mapset() dict argument")); + emsg(_(e_entries_missing_in_mapset_dict_argument)); return; } orig_rhs = rhs; |