vim-patch:8.2.0074: Python 3 unicode test someitmes fails

Problem:    Python 3 unicode test someitmes fails.
Solution:   Make 'termencoding' empty.  Correct number of error message.
4b7cdca230
This commit is contained in:
Jan Edmund Lazo
2020-01-01 13:03:06 -05:00
parent 5f0d5ec985
commit abaabd1d03
4 changed files with 10 additions and 9 deletions

View File

@@ -757,7 +757,7 @@ int del_bytes(colnr_T count, bool fixpos_arg, bool use_delcombine)
}
// If "count" is negative the caller must be doing something wrong.
if (count < 1) {
IEMSGN("E950: Invalid count for del_bytes(): %ld", count);
IEMSGN("E292: Invalid count for del_bytes(): %ld", count);
return FAIL;
}