mirror of
https://github.com/neovim/neovim.git
synced 2025-10-08 02:46:31 +00:00
fix lints
This commit is contained in:

committed by
Björn Linse

parent
9437327d5e
commit
82fb6a8818
@@ -257,11 +257,11 @@ int ml_open(buf_T *buf)
|
||||
/*
|
||||
* init fields in memline struct
|
||||
*/
|
||||
buf->b_ml.ml_stack_size = 0; /* no stack yet */
|
||||
buf->b_ml.ml_stack = NULL; /* no stack yet */
|
||||
buf->b_ml.ml_stack_top = 0; /* nothing in the stack */
|
||||
buf->b_ml.ml_locked = NULL; /* no cached block */
|
||||
buf->b_ml.ml_line_lnum = 0; /* no cached line */
|
||||
buf->b_ml.ml_stack_size = 0; // no stack yet
|
||||
buf->b_ml.ml_stack = NULL; // no stack yet
|
||||
buf->b_ml.ml_stack_top = 0; // nothing in the stack
|
||||
buf->b_ml.ml_locked = NULL; // no cached block
|
||||
buf->b_ml.ml_line_lnum = 0; // no cached line
|
||||
buf->b_ml.ml_line_offset = 0;
|
||||
buf->b_ml.ml_chunksize = NULL;
|
||||
|
||||
@@ -832,12 +832,12 @@ void ml_recover(bool checkext)
|
||||
/*
|
||||
* init fields in memline struct
|
||||
*/
|
||||
buf->b_ml.ml_stack_size = 0; /* no stack yet */
|
||||
buf->b_ml.ml_stack = NULL; /* no stack yet */
|
||||
buf->b_ml.ml_stack_top = 0; /* nothing in the stack */
|
||||
buf->b_ml.ml_line_lnum = 0; /* no cached line */
|
||||
buf->b_ml.ml_stack_size = 0; // no stack yet
|
||||
buf->b_ml.ml_stack = NULL; // no stack yet
|
||||
buf->b_ml.ml_stack_top = 0; // nothing in the stack
|
||||
buf->b_ml.ml_line_lnum = 0; // no cached line
|
||||
buf->b_ml.ml_line_offset = 0;
|
||||
buf->b_ml.ml_locked = NULL; /* no locked block */
|
||||
buf->b_ml.ml_locked = NULL; // no locked block
|
||||
buf->b_ml.ml_flags = 0;
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user