Remove has_mbytes from lines local to parent commit

This commit is contained in:
ZviRackover
2018-08-29 21:55:35 +03:00
parent 1c03a06487
commit 1015aa6ff3
6 changed files with 22 additions and 31 deletions

View File

@@ -5649,7 +5649,7 @@ void ex_sign(exarg_T *eap)
// Count cells and check for non-printable chars
cells = 0;
for (s = arg; s < p; s += (*mb_ptr2len)(s)) {
for (s = arg; s < p; s += utfc_ptr2len(s)) {
if (!vim_isprintc(utf_ptr2char(s))) {
break;
}