diff options
Diffstat (limited to 'src/nvim/move.c')
-rw-r--r-- | src/nvim/move.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/nvim/move.c b/src/nvim/move.c index ccd19a81de..fdcf6bb189 100644 --- a/src/nvim/move.c +++ b/src/nvim/move.c @@ -717,11 +717,9 @@ int curwin_col_off2(void) return win_col_off2(curwin); } -/* - * compute curwin->w_wcol and curwin->w_virtcol. - * Also updates curwin->w_wrow and curwin->w_cline_row. - * Also updates curwin->w_leftcol. - */ +// Compute curwin->w_wcol and curwin->w_virtcol. +// Also updates curwin->w_wrow and curwin->w_cline_row. +// Also updates curwin->w_leftcol. void curs_columns( int may_scroll /* when true, may scroll horizontally */ ) |