mirror of
https://github.com/tmux/tmux.git
synced 2024-12-25 02:48:47 +00:00
Remove stray spaces after function names.
This commit is contained in:
parent
01b13de655
commit
e463e8622d
@ -243,7 +243,6 @@ cmd_list_keys_exec(struct cmd *self, struct cmdq_item *item)
|
|||||||
|
|
||||||
tmpsize = 256;
|
tmpsize = 256;
|
||||||
tmp = xmalloc(tmpsize);
|
tmp = xmalloc(tmpsize);
|
||||||
|
|
||||||
table = key_bindings_first_table();
|
table = key_bindings_first_table();
|
||||||
while (table != NULL) {
|
while (table != NULL) {
|
||||||
if (tablename != NULL && strcmp(table->name, tablename) != 0) {
|
if (tablename != NULL && strcmp(table->name, tablename) != 0) {
|
||||||
|
3
format.c
3
format.c
@ -4078,8 +4078,7 @@ format_replace(struct format_expand_state *es, const char *key, size_t keylen,
|
|||||||
case 's':
|
case 's':
|
||||||
if (fm->argc < 2)
|
if (fm->argc < 2)
|
||||||
break;
|
break;
|
||||||
sub = xreallocarray (sub, nsub + 1,
|
sub = xreallocarray(sub, nsub + 1, sizeof *sub);
|
||||||
sizeof *sub);
|
|
||||||
sub[nsub++] = fm;
|
sub[nsub++] = fm;
|
||||||
break;
|
break;
|
||||||
case '=':
|
case '=':
|
||||||
|
Loading…
Reference in New Issue
Block a user