0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.3830: error messages are spread out

Problem:    Error messages are spread out.
Solution:   Move more error messages to errors.h.
This commit is contained in:
Bram Moolenaar
2021-12-16 20:56:57 +00:00
parent 94c785d235
commit e124204c4f
19 changed files with 137 additions and 74 deletions

View File

@@ -1858,7 +1858,7 @@ do_unlet(char_u *name, int forceit)
}
if (forceit)
return OK;
semsg(_("E108: No such variable: \"%s\""), name);
semsg(_(e_no_such_variable_str), name);
return FAIL;
}