aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2015-11-24 21:52:06 +0000
committernicm <nicm>2015-11-24 21:52:06 +0000
commit1e2df2d46496fc025330c25fa08e83d14e62d11b (patch)
treef50166c6832d90b8ae3ff9b51b9449e258ab8a27 /tmux.h
parent9fd3318dd818c45432581beff5b1a5f6cb55f2ff (diff)
downloadrtmux-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.h')
-rw-r--r--tmux.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tmux.h b/tmux.h
index 5f469f92..97908d98 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1431,9 +1431,9 @@ extern struct options *global_options;
extern struct options *global_s_options;
extern struct options *global_w_options;
extern struct environ *global_environ;
-extern char *shell_cmd;
-extern time_t start_time;
-extern char socket_path[PATH_MAX];
+extern char *shell_cmd;
+extern struct timeval start_time;
+extern char socket_path[PATH_MAX];
const char *getshell(void);
int checkshell(const char *);
int areshell(const char *);