diff options
author | Pavel Platto <hinidu@gmail.com> | 2014-05-16 11:59:00 +0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-28 10:42:06 -0400 |
commit | baaa4287851ecf478b40054efd7b786501eb70ef (patch) | |
tree | 37a5b788a29278e8a4e27b6e9c5c9f787da41a60 /src/nvim/cursor.h | |
parent | 2a154ef71de506e64fbbc2d8e613b5a696f8cb60 (diff) | |
download | rneovim-baaa4287851ecf478b40054efd7b786501eb70ef.tar.gz rneovim-baaa4287851ecf478b40054efd7b786501eb70ef.tar.bz2 rneovim-baaa4287851ecf478b40054efd7b786501eb70ef.zip |
Remove ml_ prefix from cursor.h functions
s/ml_get_curline/get_cursor_line_ptr
s/ml_get_cursor/get_cursor_pos_ptr
Diffstat (limited to 'src/nvim/cursor.h')
-rw-r--r-- | src/nvim/cursor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/cursor.h b/src/nvim/cursor.h index 5cf28ce590..3cceb0261e 100644 --- a/src/nvim/cursor.h +++ b/src/nvim/cursor.h @@ -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 |