diff options
author | nicm <nicm> | 2015-11-24 21:52:06 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-11-24 21:52:06 +0000 |
commit | 1e2df2d46496fc025330c25fa08e83d14e62d11b (patch) | |
tree | f50166c6832d90b8ae3ff9b51b9449e258ab8a27 /tmux.c | |
parent | 9fd3318dd818c45432581beff5b1a5f6cb55f2ff (diff) | |
download | rtmux-1e2df2d46496fc025330c25fa08e83d14e62d11b.tar.gz rtmux-1e2df2d46496fc025330c25fa08e83d14e62d11b.tar.bz2 rtmux-1e2df2d46496fc025330c25fa08e83d14e62d11b.zip |
Remove the -I part of show-messages which isn't really that useful; the
server start time can now be accessed with a new start_time format (use:
tmux display -p '#{t:start_time}')
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ struct options *global_w_options; /* window options */ struct environ *global_environ; char *shell_cmd; -time_t start_time; +struct timeval start_time; char socket_path[PATH_MAX]; __dead void usage(void); |