summaryrefslogtreecommitdiff
path: root/src/mark.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-01 21:59:18 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-01 21:59:18 +0000
commit9a846fbaa569b3690d70606f2a86e97f77a05496 (patch)
treecbe5304927fe21586593c94342e4f023aa3e0837 /src/mark.c
parentb34689010a587e85ff724051f276513a15c634d0 (diff)
downloadvim-git-9a846fbaa569b3690d70606f2a86e97f77a05496.tar.gz
patch 8.2.3977: error messages are spread outv8.2.3977
Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
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 dc9bece44..771eb1b98 100644
--- a/src/mark.c
+++ b/src/mark.c
@@ -732,7 +732,7 @@ show_one_mark(
if (arg == NULL)
msg(_("No marks set"));
else
- semsg(_("E283: No marks matching \"%s\""), arg);
+ semsg(_(e_no_marks_matching_str), arg);
}
}
// don't output anything if 'q' typed at --more-- prompt