commit | 9a846fbaa569b3690d70606f2a86e97f77a05496 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Jan 01 21:59:18 2022 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Jan 01 21:59:18 2022 +0000 |
tree | cbe5304927fe21586593c94342e4f023aa3e0837 | |
parent | b34689010a587e85ff724051f276513a15c634d0 [diff] [blame] |
patch 8.2.3977: error messages are spread out Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
diff --git a/src/mark.c b/src/mark.c index dc9bece..771eb1b 100644 --- a/src/mark.c +++ b/src/mark.c
@@ -732,7 +732,7 @@ 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