diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-01 14:19:49 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-01 14:19:49 +0000 |
commit | 460ae5dfca31fa627531c263184849976755cf6b (patch) | |
tree | d94de6a24285bc10fd62ad4ae9aecb53f9a7e913 /src/fileio.c | |
parent | b37a65e4bf08c4eec4fa5b81a5efc3945fca44de (diff) | |
download | vim-git-460ae5dfca31fa627531c263184849976755cf6b.tar.gz |
patch 8.2.3967: error messages are spread outv8.2.3967
Problem: Error messages are spread out.
Solution: Move more errors to errors.h.
Diffstat (limited to 'src/fileio.c')
-rw-r--r-- | src/fileio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c index 73c724321..1aeb483a9 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -4809,7 +4809,7 @@ readdir_core( if (!ok) { failed = TRUE; - semsg(_(e_notopen), path); + semsg(_(e_cant_open_file_str), path); } else { @@ -4879,7 +4879,7 @@ readdir_core( if (dirp == NULL) { failed = TRUE; - semsg(_(e_notopen), path); + semsg(_(e_cant_open_file_str), path); } else { |