summaryrefslogtreecommitdiffstats
path: root/src/fileio.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-01 14:19:49 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-01 14:19:49 +0000
commit460ae5dfca31fa627531c263184849976755cf6b (patch)
treed94de6a24285bc10fd62ad4ae9aecb53f9a7e913 /src/fileio.c
parentb37a65e4bf08c4eec4fa5b81a5efc3945fca44de (diff)
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 73c7243216..1aeb483a94 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
{