summaryrefslogtreecommitdiff
path: root/src/help.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-31 17:25:48 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-31 17:25:48 +0000
commit1a9922243a90f213894d5c58cd063465eea3350f (patch)
treeb9fb1efe82d000b215d8b99750372e4f2ec7ba92 /src/help.c
parent4b1478093eb8b8bebc94b1f596e0afc25db4d189 (diff)
downloadvim-git-1a9922243a90f213894d5c58cd063465eea3350f.tar.gz
patch 8.2.3957: error messages are spread outv8.2.3957
Problem: Error messages are spread out. Solution: Move more errors to errors.h.
Diffstat (limited to 'src/help.c')
-rw-r--r--src/help.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/help.c b/src/help.c
index bb9fc8eec..22a86ed64 100644
--- a/src/help.c
+++ b/src/help.c
@@ -995,7 +995,7 @@ helptags_one(
if (fd_tags == NULL)
{
if (!ignore_writeerr)
- semsg(_(e_cannot_open_str_for_writing), NameBuff);
+ semsg(_(e_cannot_open_str_for_writing_1), NameBuff);
FreeWild(filecount, files);
return;
}