diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-01 21:59:18 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-01 21:59:18 +0000 |
commit | 9a846fbaa569b3690d70606f2a86e97f77a05496 (patch) | |
tree | cbe5304927fe21586593c94342e4f023aa3e0837 /src/mark.c | |
parent | b34689010a587e85ff724051f276513a15c634d0 (diff) | |
download | vim-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.c | 2 |
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 |