Sync OpenBSD patchset 990:

Reset flags on every loop or it is displayed too often, from Chris
Johnsen.
pull/1/head
Tiago Cunha 2011-12-30 14:15:40 +00:00
parent 9e7ec2e971
commit d1f0138653
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,6 @@ cmd_list_keys_exec(struct cmd *self, struct cmd_ctx *ctx)
return (cmd_list_keys_table(self, ctx));
width = 0;
*flags = '\0';
SPLAY_FOREACH(bd, key_bindings, &key_bindings) {
key = key_string_lookup_key(bd->key & ~KEYC_PREFIX);
@ -78,6 +77,7 @@ cmd_list_keys_exec(struct cmd *self, struct cmd_ctx *ctx)
if (key == NULL)
continue;
*flags = '\0';
if (!(bd->key & KEYC_PREFIX)) {
if (bd->can_repeat)
xsnprintf(flags, sizeof flags, "-rn ");