diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-01 15:58:22 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-01 15:58:22 +0000 |
commit | 74409f62790a93daf0965c71da01ff76aa0fa5a5 (patch) | |
tree | ece55c806dc6fe451d24af66008ae1444d81d73d /src/menu.c | |
parent | 56200eed62e59ad831f6564dcafe346e6f97ac20 (diff) | |
download | vim-git-74409f62790a93daf0965c71da01ff76aa0fa5a5.tar.gz |
patch 8.2.3970: error messages are spread outv8.2.3970
Problem: Error messages are spread out.
Solution: Move more errors to errors.h.
Diffstat (limited to 'src/menu.c')
-rw-r--r-- | src/menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/menu.c b/src/menu.c index e821b0580..9ecba448e 100644 --- a/src/menu.c +++ b/src/menu.c @@ -289,7 +289,7 @@ ex_menu( } else if (*map_to != NUL && (unmenu || enable != MAYBE)) { - semsg(_(e_trailing_arg), map_to); + semsg(_(e_trailing_characters_str), map_to); goto theend; } #if defined(FEAT_GUI) && !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON)) |