mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Move struct options into options.c.
This commit is contained in:
@ -564,7 +564,7 @@ partial_key:
|
||||
}
|
||||
|
||||
/* Get the time period. */
|
||||
delay = options_get_number(&global_options, "escape-time");
|
||||
delay = options_get_number(global_options, "escape-time");
|
||||
tv.tv_sec = delay / 1000;
|
||||
tv.tv_usec = (delay % 1000) * 1000L;
|
||||
|
||||
|
Reference in New Issue
Block a user