mirror of
https://github.com/neovim/neovim.git
synced 2025-09-15 07:48:18 +00:00
clang/"Dead assignment"
This commit is contained in:
@@ -1808,7 +1808,6 @@ static int command_line_changed(CommandLineState *s)
|
||||
if (has_event(EVENT_CMDLINECHANGED)) {
|
||||
TryState tstate;
|
||||
Error err = ERROR_INIT;
|
||||
bool tl_ret = true;
|
||||
dict_T *dict = get_vim_var_dict(VV_EVENT);
|
||||
|
||||
char firstcbuf[2];
|
||||
@@ -1825,14 +1824,13 @@ static int command_line_changed(CommandLineState *s)
|
||||
(char_u *)firstcbuf, false, curbuf);
|
||||
tv_dict_clear(dict);
|
||||
|
||||
tl_ret = try_leave(&tstate, &err);
|
||||
bool tl_ret = try_leave(&tstate, &err);
|
||||
if (!tl_ret && ERROR_SET(&err)) {
|
||||
msg_putchar('\n');
|
||||
msg_printf_attr(HL_ATTR(HLF_E)|MSG_HIST, (char *)e_autocmd_err, err.msg);
|
||||
api_clear_error(&err);
|
||||
redrawcmd();
|
||||
}
|
||||
tl_ret = true;
|
||||
}
|
||||
|
||||
// 'incsearch' highlighting.
|
||||
|
Reference in New Issue
Block a user