mirror of
https://github.com/neovim/neovim.git
synced 2025-09-23 19:48:32 +00:00
Remove ml_ prefix from cursor.h functions
s/ml_get_curline/get_cursor_line_ptr s/ml_get_cursor/get_cursor_pos_ptr
This commit is contained in:
committed by
Justin M. Keyes
parent
2a154ef71d
commit
baaa428785
@@ -6780,7 +6780,7 @@ void setcursor(void)
|
||||
* character, position it on the leftmost column. */
|
||||
curwin->w_p_rl ? ((int)W_WIDTH(curwin) - curwin->w_wcol - (
|
||||
(has_mbyte
|
||||
&& (*mb_ptr2cells)(ml_get_cursor()) == 2
|
||||
&& (*mb_ptr2cells)(get_cursor_pos_ptr()) == 2
|
||||
&& vim_isprintc(gchar_cursor())) ? 2 :
|
||||
1)) :
|
||||
curwin->w_wcol));
|
||||
|
||||
Reference in New Issue
Block a user