mirror of
https://github.com/neovim/neovim.git
synced 2026-08-26 17:11:48 +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
@@ -1639,7 +1639,7 @@ win_found:
|
||||
* found, reduce the error column value by the length of
|
||||
* a tab character.
|
||||
*/
|
||||
line = ml_get_curline();
|
||||
line = get_cursor_line_ptr();
|
||||
screen_col = 0;
|
||||
for (char_col = 0; char_col < curwin->w_cursor.col; ++char_col) {
|
||||
if (*line == NUL)
|
||||
|
||||
Reference in New Issue
Block a user