summaryrefslogtreecommitdiffstats
path: root/src/digraph.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-16 20:56:57 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-16 20:56:57 +0000
commite124204c4f8ea8b4fe5357b7613092a7acb5feb8 (patch)
tree8a049a292b17314710048a1b17625416c2bfc8d6 /src/digraph.c
parent94c785d235dccacf6cdf38c5903115b61ca8a981 (diff)
patch 8.2.3830: error messages are spread outv8.2.3830
Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/digraph.c')
-rw-r--r--src/digraph.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/digraph.c b/src/digraph.c
index adabc9b90a..a9fcba5410 100644
--- a/src/digraph.c
+++ b/src/digraph.c
@@ -2043,7 +2043,7 @@ check_digraph_chars_valid(int char1, int char2)
}
if (char1 == ESC || char2 == ESC)
{
- emsg(_("E104: Escape not allowed in digraph"));
+ emsg(_(e_escape_not_allowed_in_digraph));
return FALSE;
}
return TRUE;
@@ -2622,7 +2622,7 @@ ex_loadkeymap(exarg_T *eap)
if (!getline_equal(eap->getline, eap->cookie, getsourceline))
{
- emsg(_("E105: Using :loadkeymap not in a sourced file"));
+ emsg(_(e_using_loadkeymap_not_in_sourced_file));
return;
}