refactor: replace char_u with char

Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
Dundar Göc
2022-08-26 10:36:35 +02:00
parent 6a13b8fa54
commit 3952770360
43 changed files with 526 additions and 534 deletions

View File

@@ -1936,7 +1936,7 @@ void utf_find_illegal(void)
// 'encoding' is "utf-8" but we are editing a 8-bit encoded file,
// possibly a utf-8 file with illegal bytes. Setup for conversion
// from utf-8 to 'fileencoding'.
convert_setup(&vimconv, p_enc, (char_u *)curbuf->b_p_fenc);
convert_setup(&vimconv, (char_u *)p_enc, (char_u *)curbuf->b_p_fenc);
}
curwin->w_cursor.coladd = 0;