diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-08-10 22:32:08 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2021-08-10 22:32:08 +0200 |
commit | a177c7df093f573c4bcb7b422bd615ce239be367 (patch) | |
tree | 44ade4d8162efc2b18b0006afc58ef89b327be21 /src/nvim/buffer_defs.h | |
parent | a2909aa35faf941a30b1496e74c278accc3fb15b (diff) | |
download | rneovim-a177c7df093f573c4bcb7b422bd615ce239be367.tar.gz rneovim-a177c7df093f573c4bcb7b422bd615ce239be367.tar.bz2 rneovim-a177c7df093f573c4bcb7b422bd615ce239be367.zip |
refactor(plines): remove implicit curwin plines() function
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 3db6892b71..ec6d5a3955 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -1298,7 +1298,7 @@ struct window_S { /* * w_cline_height is the number of physical lines taken by the buffer line - * that the cursor is on. We use this to avoid extra calls to plines(). + * that the cursor is on. We use this to avoid extra calls to plines_win(). */ int w_cline_height; // current size of cursor line bool w_cline_folded; // cursor line is folded |