summaryrefslogtreecommitdiffstats
path: root/src/map.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-02 19:25:26 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-02 19:25:26 +0000
commitac78dd4a352196ca4e6640f8e4caaf126afd49e3 (patch)
treec741cbf5a8f33503e42af2294afdbd4bf15b0ae9 /src/map.c
parent3d0da09bb2d31afc611bf1c4b35796739d87ed63 (diff)
patch 8.2.3985: error messages are spread outv8.2.3985
Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/map.c')
-rw-r--r--src/map.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map.c b/src/map.c
index b8e7c05605..cebd43a083 100644
--- a/src/map.c
+++ b/src/map.c
@@ -2706,7 +2706,7 @@ langmap_set(void)
}
if (to == NUL)
{
- semsg(_("E357: 'langmap': Matching character missing for %s"),
+ semsg(_(e_langmap_matching_character_missing_for_str),
transchar(from));
return;
}
@@ -2728,7 +2728,7 @@ langmap_set(void)
{
if (p[0] != ',')
{
- semsg(_("E358: 'langmap': Extra characters after semicolon: %s"), p);
+ semsg(_(e_langmap_extra_characters_after_semicolon_str), p);
return;
}
++p;