diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-12-05 21:46:34 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-05 21:46:34 +0000 |
commit | 12f3c1b77fb39dc338304d5484cdbc99da27389a (patch) | |
tree | 547976b1abc154007b9e8bfed81a69b7b457706e /src/cmdexpand.c | |
parent | e5710a02cb78c2a0a868ea55740835c78ddecbb4 (diff) | |
download | vim-git-12f3c1b77fb39dc338304d5484cdbc99da27389a.tar.gz |
patch 8.2.3749: error messages are everywherev8.2.3749
Problem: Error messages are everywhere.
Solution: Move more error messages to errors.h and adjust the names.
Diffstat (limited to 'src/cmdexpand.c')
-rw-r--r-- | src/cmdexpand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmdexpand.c b/src/cmdexpand.c index 9e88d99b7..73c5a9166 100644 --- a/src/cmdexpand.c +++ b/src/cmdexpand.c @@ -406,7 +406,7 @@ ExpandOne( // together. Don't really want to wait for this message // (and possibly have to hit return to continue!). if (!(options & WILD_SILENT)) - emsg(_(e_toomany)); + emsg(_(e_too_many_file_names)); else if (!(options & WILD_NO_BEEP)) beep_flush(); } |