mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 14:38:32 +00:00
ex_getln: Silent V519: value is assigned twice successively
This is usual “passing data via global” false positive.
This commit is contained in:
@@ -306,7 +306,7 @@ static uint8_t *command_line_enter(int firstc, long count, int indent)
|
||||
curwin->w_cursor = s->save_cursor;
|
||||
setpcmark();
|
||||
}
|
||||
curwin->w_cursor = s->search_start;
|
||||
curwin->w_cursor = s->search_start; // -V519
|
||||
}
|
||||
curwin->w_curswant = s->old_curswant;
|
||||
curwin->w_leftcol = s->old_leftcol;
|
||||
|
Reference in New Issue
Block a user