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

@@ -892,10 +892,7 @@ static colnr_T hardcopy_line(prt_settings_T *psettings, int page_line, prt_pos_T
need_break = 1;
} else {
need_break = mch_print_text_out(line + col, (size_t)outputlen);
if (has_mbyte)
print_pos += utf_ptr2cells(line + col);
else
print_pos++;
print_pos += utf_ptr2cells(line + col);
}
}