diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-06-03 18:28:38 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-06-03 18:28:38 +0000 |
commit | fcff8f3164088adcd21e0148050c1e53965fd6d8 (patch) | |
tree | 8722bb7a2923dd0baa7f661965b09f26c00edcf1 /usr.bin/tmux/tmux.h | |
parent | ee73c36c39e04c3bc247d4507dbe3a1a76211502 (diff) |
Add new-session -X and attach-session -x to send SIGHUP to parent when
detaching (like detach-client -P). From Colin Watson in GitHub issue
1773.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 27ad03f38e8..7fbd288869c 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.907 2019/05/28 07:18:42 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.908 2019/06/03 18:28:37 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -2009,7 +2009,7 @@ extern const struct cmd_entry *cmd_table[]; /* cmd-attach-session.c */ enum cmd_retval cmd_attach_session(struct cmdq_item *, const char *, int, int, - const char *, int); + int, const char *, int); /* cmd-parse.c */ void cmd_parse_empty(struct cmd_parse_input *); |