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:
Pavel Platto
2014-05-16 11:59:00 +03:00
committed by Justin M. Keyes
parent 2a154ef71d
commit baaa428785
21 changed files with 197 additions and 194 deletions

View File

@@ -20,8 +20,8 @@ void adjust_cursor_col(void);
int leftcol_changed(void);
int gchar_cursor(void);
void pchar_cursor(char_u c);
char_u *ml_get_curline(void);
char_u *ml_get_cursor(void);
char_u *get_cursor_line_ptr(void);
char_u *get_cursor_pos_ptr(void);
#endif // NVIM_CURSOR_H