aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/plines.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-08-26 11:13:20 +0800
committerGitHub <noreply@github.com>2023-08-26 11:13:20 +0800
commit1635c9e75e21e07c4331cf983e14a11c7e09b119 (patch)
tree2acd3792ff17e17b9caa5c7b90e63710ffcba103 /src/nvim/plines.c
parentb1cfb299df2ef412339f594173ed23c75c090c8a (diff)
downloadrneovim-1635c9e75e21e07c4331cf983e14a11c7e09b119.tar.gz
rneovim-1635c9e75e21e07c4331cf983e14a11c7e09b119.tar.bz2
rneovim-1635c9e75e21e07c4331cf983e14a11c7e09b119.zip
refactor: move some structs out of buffer_defs.h (#24878)
Diffstat (limited to 'src/nvim/plines.c')
-rw-r--r--src/nvim/plines.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/plines.c b/src/nvim/plines.c
index be6bcd22ae..c95f362518 100644
--- a/src/nvim/plines.c
+++ b/src/nvim/plines.c
@@ -726,7 +726,7 @@ void getvcols(win_T *wp, pos_T *pos1, pos_T *pos2, colnr_T *left, colnr_T *right
/// Functions calculating vertical size of text when displayed inside a window.
/// Calls horizontal size functions defined above.
-/// Check if there may be filler inlines anywhere in window "wp".
+/// Check if there may be filler lines anywhere in window "wp".
bool win_may_fill(win_T *wp)
{
return (wp->w_p_diff && diffopt_filler()) || wp->w_buffer->b_virt_line_blocks;