comparison src/change.c @ 19027:d72b30bf3a80 v8.2.0074

patch 8.2.0074: Python 3 unicode test someitmes fails Commit: https://github.com/vim/vim/commit/4b7cdca23035eacf6cd0e30b90546cf32f7efe9e Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 1 16:18:38 2020 +0100 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.
author Bram Moolenaar <Bram@vim.org>
date Wed, 01 Jan 2020 16:30:05 +0100
parents 49b78d6465e5
children 36ec10251b2b
comparison
equal deleted inserted replaced
19026:0c0f1f148632 19027:d72b30bf3a80
1216 return OK; 1216 return OK;
1217 1217
1218 // If "count" is negative the caller must be doing something wrong. 1218 // If "count" is negative the caller must be doing something wrong.
1219 if (count < 1) 1219 if (count < 1)
1220 { 1220 {
1221 siemsg("E950: Invalid count for del_bytes(): %ld", count); 1221 siemsg("E292: Invalid count for del_bytes(): %ld", count);
1222 return FAIL; 1222 return FAIL;
1223 } 1223 }
1224 1224
1225 // If 'delcombine' is set and deleting (less than) one character, only 1225 // If 'delcombine' is set and deleting (less than) one character, only
1226 // delete the last combining character. 1226 // delete the last combining character.