mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 21:03:12 +00:00
lint: empty else block
This commit is contained in:
parent
4f4d34e664
commit
e35b91d38c
2 changed files with 1 additions and 3 deletions
|
@ -372,7 +372,6 @@ int input_init() {
|
|||
} else {
|
||||
debug(0, _(L"Using fallback terminal type '%ls'"), DEFAULT_TERM);
|
||||
}
|
||||
} else {
|
||||
}
|
||||
|
||||
input_terminfo_init();
|
||||
|
|
|
@ -214,8 +214,7 @@ static void mangle_1_completion_description(wcstring *str) {
|
|||
str->at(trailing++) = wc;
|
||||
} else if (!was_space) { // initial space in a run
|
||||
str->at(trailing++) = L' ';
|
||||
} else { // non-initial space in a run, do nothing
|
||||
}
|
||||
} // else non-initial space in a run, do nothing
|
||||
was_space = is_space;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue