mirror of
https://github.com/neovim/neovim.git
synced 2025-10-08 19:06:31 +00:00
chore: use codespell to spell check #15016
This commit is contained in:
@@ -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
|
||||
};
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user