1
0
forked from aniani/vim

patch 8.2.3983: 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
2022-01-02 17:00:40 +00:00
parent 8bfa0eb863
commit eaaac014a0
12 changed files with 163 additions and 64 deletions

View File

@@ -2517,7 +2517,7 @@ bt_regcomp(char_u *expr, int re_flags)
{
vim_free(r);
if (reg_toolong)
EMSG_RET_NULL(_("E339: Pattern too long"));
EMSG_RET_NULL(_(e_pattern_too_long));
return NULL;
}