diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2021-07-08 00:28:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-07 15:28:44 -0700 |
commit | 4547137aaff32b20172870a549d3a28a3c7adf1c (patch) | |
tree | 0f40a62b3741c57a6f5759dc25f8932a26922908 /src/nvim/memline.c | |
parent | e2bc7e321b4a8bec3727cf342a84eb1e85dadbc8 (diff) | |
download | rneovim-4547137aaff32b20172870a549d3a28a3c7adf1c.tar.gz rneovim-4547137aaff32b20172870a549d3a28a3c7adf1c.tar.bz2 rneovim-4547137aaff32b20172870a549d3a28a3c7adf1c.zip |
chore: use codespell to spell check #15016
Diffstat (limited to 'src/nvim/memline.c')
-rw-r--r-- | src/nvim/memline.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/nvim/memline.c b/src/nvim/memline.c index cb2437b2b3..2046e2f324 100644 --- a/src/nvim/memline.c +++ b/src/nvim/memline.c @@ -118,15 +118,15 @@ struct pointer_block { * etc. Thus the order of the lines is the opposite of the line number. */ struct data_block { - uint16_t db_id; /* ID for data block: DATA_ID */ - unsigned db_free; /* free space available */ - unsigned db_txt_start; /* byte where text starts */ - unsigned db_txt_end; /* byte just after data block */ - linenr_T db_line_count; /* number of lines in this block */ - unsigned db_index[1]; /* index for start of line (actually bigger) - * followed by empty space upto db_txt_start - * followed by the text in the lines until - * end of page */ + uint16_t db_id; // ID for data block: DATA_ID + unsigned db_free; // free space available + unsigned db_txt_start; // byte where text starts + unsigned db_txt_end; // byte just after data block + linenr_T db_line_count; // number of lines in this block + unsigned db_index[1]; // index for start of line (actually bigger) + // followed by empty space up to db_txt_start + // followed by the text in the lines until + // end of page }; /* |