summaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-05 22:19:27 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-05 22:19:27 +0000
commit40bcec1bac34d34a3d4d7c5f6b2cc1f163acbd00 (patch)
treebe6586866cf712e434252f74b185d35f6a49eed3 /src/os_unix.c
parent4700398e384f38f752b432e187462f404b96847d (diff)
downloadvim-git-40bcec1bac34d34a3d4d7c5f6b2cc1f163acbd00.tar.gz
patch 8.2.3750: error messages are everywherev8.2.3750
Problem: Error messages are everywhere. Solution: Move more error messages to errors.h and adjust the names.
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index ef5533c4d..f93bc9586 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -6797,7 +6797,7 @@ mch_expand_wildcards(
if (!(flags & EW_SILENT))
#endif
{
- msg(_(e_wildexpand));
+ msg(_(e_cannot_expand_wildcards));
msg_start(); // don't overwrite this message
}
}
@@ -6817,7 +6817,7 @@ mch_expand_wildcards(
// Something went wrong, perhaps a file name with a special char.
if (!(flags & EW_SILENT))
{
- msg(_(e_wildexpand));
+ msg(_(e_cannot_expand_wildcards));
msg_start(); // don't overwrite this message
}
vim_free(tempname);