aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/quickfix.c
diff options
context:
space:
mode:
authorPavel Platto <hinidu@gmail.com>2014-05-16 11:59:00 +0300
committerJustin M. Keyes <justinkz@gmail.com>2014-05-28 10:42:06 -0400
commitbaaa4287851ecf478b40054efd7b786501eb70ef (patch)
tree37a5b788a29278e8a4e27b6e9c5c9f787da41a60 /src/nvim/quickfix.c
parent2a154ef71de506e64fbbc2d8e613b5a696f8cb60 (diff)
downloadrneovim-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/quickfix.c')
-rw-r--r--src/nvim/quickfix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c
index 219a20d8b5..cba6b5f94d 100644
--- a/src/nvim/quickfix.c
+++ b/src/nvim/quickfix.c
@@ -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)