mirror of
https://github.com/neovim/neovim.git
synced 2025-09-15 15:58:17 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -493,9 +493,9 @@ void pchar_cursor(char_u c)
|
||||
}
|
||||
|
||||
/// @return pointer to cursor line.
|
||||
char_u *get_cursor_line_ptr(void)
|
||||
char *get_cursor_line_ptr(void)
|
||||
{
|
||||
return ml_get_buf(curbuf, curwin->w_cursor.lnum, false);
|
||||
return (char *)ml_get_buf(curbuf, curwin->w_cursor.lnum, false);
|
||||
}
|
||||
|
||||
/// @return pointer to cursor position.
|
||||
|
Reference in New Issue
Block a user