mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
make clang-format happy in keyboard.c
This commit is contained in:
parent
fe9a443380
commit
0d2997b36f
@ -770,8 +770,7 @@ static void cmd_show_keys(const char *searchkey, int full)
|
|||||||
for (key = rec->keys; key != NULL; key = key->next) {
|
for (key = rec->keys; key != NULL; key = key->next) {
|
||||||
KEY_REC *rec = key->data;
|
KEY_REC *rec = key->data;
|
||||||
|
|
||||||
if ((len == 0 ||
|
if ((len == 0 || (full ? strncmp(rec->key, searchkey, len) == 0 :
|
||||||
(full ? strncmp(rec->key, searchkey, len) == 0 :
|
|
||||||
strstr(rec->key, searchkey) != NULL)) &&
|
strstr(rec->key, searchkey) != NULL)) &&
|
||||||
(!full || rec->key[len] == '\0')) {
|
(!full || rec->key[len] == '\0')) {
|
||||||
printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, TXT_BIND_LIST,
|
printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, TXT_BIND_LIST,
|
||||||
|
Loading…
Reference in New Issue
Block a user