0
0
mirror of https://github.com/vim/vim.git synced 2025-10-28 09:27:14 -04:00

patch 8.2.4011: test fails because of changed error number

Problem:    Test fails because of changed error number.
Solution:   Restore old duplicate error message.
This commit is contained in:
Bram Moolenaar
2022-01-05 18:16:53 +00:00
parent 9d00e4a814
commit bb8cac56d9
3 changed files with 7 additions and 4 deletions

View File

@@ -45,7 +45,7 @@ match_add(
return -1;
if (id < -1 || id == 0)
{
semsg(_(e_invalid_id_nr_must_be_greater_than_or_equal_to_one), id);
semsg(_(e_invalid_id_nr_must_be_greater_than_or_equal_to_one_1), id);
return -1;
}
if (id != -1)
@@ -233,7 +233,7 @@ match_delete(win_T *wp, int id, int perr)
if (id < 1)
{
if (perr == TRUE)
semsg(_(e_invalid_id_nr_must_be_greater_than_or_equal_to_one), id);
semsg(_(e_invalid_id_nr_must_be_greater_than_or_equal_to_one_2), id);
return -1;
}
while (cur != NULL && cur->id != id)