diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-11-12 00:43:14 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-11-12 01:12:58 -0500 |
commit | e2504d21928325c5379b1e3daf8d7c7bc56f52b0 (patch) | |
tree | 4de381e5d8132a5025833c28a457a244484ef848 /src/nvim/move.c | |
parent | 54495c9816c19d19b10a89825b63b745de6ecfa7 (diff) | |
download | rneovim-e2504d21928325c5379b1e3daf8d7c7bc56f52b0.tar.gz rneovim-e2504d21928325c5379b1e3daf8d7c7bc56f52b0.tar.bz2 rneovim-e2504d21928325c5379b1e3daf8d7c7bc56f52b0.zip |
vim-patch:8.1.0806: too many #ifdefs
Problem: Too many #ifdefs.
Solution: Graduate FEAT_MBYTE, part 2.
https://github.com/vim/vim/commit/fc3abf47fbe1e426f2b676c316c81ee9ff607075
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 */ ) |