=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-list-keys.c,v retrieving revision 1.63 retrieving revision 1.64 diff -c -r1.63 -r1.64 *** src/usr.bin/tmux/cmd-list-keys.c 2021/04/13 16:00:47 1.63 --- src/usr.bin/tmux/cmd-list-keys.c 2021/08/20 17:50:42 1.64 *************** *** 1,4 **** ! /* $OpenBSD: cmd-list-keys.c,v 1.63 2021/04/13 16:00:47 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-list-keys.c,v 1.64 2021/08/20 17:50:42 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 211,217 **** repeat = 0; tablewidth = keywidth = 0; ! table = key_bindings_first_table (); while (table != NULL) { if (tablename != NULL && strcmp(table->name, tablename) != 0) { table = key_bindings_next_table(table); --- 211,217 ---- repeat = 0; tablewidth = keywidth = 0; ! table = key_bindings_first_table(); while (table != NULL) { if (tablename != NULL && strcmp(table->name, tablename) != 0) { table = key_bindings_next_table(table); *************** *** 243,250 **** tmpsize = 256; tmp = xmalloc(tmpsize); ! ! table = key_bindings_first_table (); while (table != NULL) { if (tablename != NULL && strcmp(table->name, tablename) != 0) { table = key_bindings_next_table(table); --- 243,249 ---- tmpsize = 256; tmp = xmalloc(tmpsize); ! table = key_bindings_first_table(); while (table != NULL) { if (tablename != NULL && strcmp(table->name, tablename) != 0) { table = key_bindings_next_table(table);