summaryrefslogtreecommitdiffstats
path: root/src/mark.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-05 22:19:27 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-05 22:19:27 +0000
commit40bcec1bac34d34a3d4d7c5f6b2cc1f163acbd00 (patch)
treebe6586866cf712e434252f74b185d35f6a49eed3 /src/mark.c
parent4700398e384f38f752b432e187462f404b96847d (diff)
patch 8.2.3750: error messages are everywherev8.2.3750
Problem: Error messages are everywhere. Solution: Move more error messages to errors.h and adjust the names.
Diffstat (limited to 'src/mark.c')
-rw-r--r--src/mark.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mark.c b/src/mark.c
index c708e07e48..099214e74f 100644
--- a/src/mark.c
+++ b/src/mark.c
@@ -578,7 +578,7 @@ check_mark(pos_T *pos)
{
if (pos == NULL)
{
- emsg(_(e_umark));
+ emsg(_(e_unknown_mark));
return FAIL;
}
if (pos->lnum <= 0)