mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Don't use motion flag uninitialized.
This commit is contained in:
@ -1978,7 +1978,7 @@ window_copy_command(struct window_mode_entry *wme, struct client *c,
|
|||||||
enum window_copy_cmd_action action;
|
enum window_copy_cmd_action action;
|
||||||
const char *command;
|
const char *command;
|
||||||
u_int i;
|
u_int i;
|
||||||
int ismotion, keys;
|
int ismotion = 0, keys;
|
||||||
|
|
||||||
if (args->argc == 0)
|
if (args->argc == 0)
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user