diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-01-01 13:03:06 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-01-01 13:11:54 -0500 |
commit | abaabd1d03fd723630f6addeadee9928faa4cdde (patch) | |
tree | 71eefad0cab65912368f88de4170363a0ba24b09 /src/nvim/change.c | |
parent | 5f0d5ec9852cf82c9b865ac2d3cf7f6e131adf4a (diff) | |
download | rneovim-abaabd1d03fd723630f6addeadee9928faa4cdde.tar.gz rneovim-abaabd1d03fd723630f6addeadee9928faa4cdde.tar.bz2 rneovim-abaabd1d03fd723630f6addeadee9928faa4cdde.zip |
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.
https://github.com/vim/vim/commit/4b7cdca23035eacf6cd0e30b90546cf32f7efe9e
Diffstat (limited to 'src/nvim/change.c')
-rw-r--r-- | src/nvim/change.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/change.c b/src/nvim/change.c index 8a782c2b20..05cacaf2c2 100644 --- a/src/nvim/change.c +++ b/src/nvim/change.c @@ -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; } |