mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 15:21:47 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user