mirror of
https://github.com/tmux/tmux.git
synced 2025-09-01 20:57:00 +00:00
Remove stray spaces after function names.
This commit is contained in:
4
status.c
4
status.c
@ -1413,7 +1413,7 @@ process_key:
|
||||
break;
|
||||
if (c->prompt_buffer[0].size == 0) {
|
||||
prefix = '=';
|
||||
free (c->prompt_buffer);
|
||||
free(c->prompt_buffer);
|
||||
c->prompt_buffer = utf8_fromcstr(c->prompt_last);
|
||||
c->prompt_index = utf8_strlen(c->prompt_buffer);
|
||||
} else
|
||||
@ -1424,7 +1424,7 @@ process_key:
|
||||
break;
|
||||
if (c->prompt_buffer[0].size == 0) {
|
||||
prefix = '=';
|
||||
free (c->prompt_buffer);
|
||||
free(c->prompt_buffer);
|
||||
c->prompt_buffer = utf8_fromcstr(c->prompt_last);
|
||||
c->prompt_index = utf8_strlen(c->prompt_buffer);
|
||||
} else
|
||||
|
Reference in New Issue
Block a user