diff options
author | 2016-10-13 21:37:03 +0000 | |
---|---|---|
committer | 2016-10-13 21:37:03 +0000 | |
commit | 8dbdd8a7110c7da06f827187fb3828a3a02290a0 (patch) | |
tree | dfd65d453515dfad5c4a89d0b5462780d279cd30 /usr.bin/tmux/session.c | |
parent | rcsnum_free() -> free() cleanups. From Michael W. Bombardieri. (diff) | |
download | wireguard-openbsd-8dbdd8a7110c7da06f827187fb3828a3a02290a0.tar.xz wireguard-openbsd-8dbdd8a7110c7da06f827187fb3828a3a02290a0.zip |
Remove the set-remain-on-exit option, it was always a hack and can now
be done with hooks instead.
Diffstat (limited to 'usr.bin/tmux/session.c')
-rw-r--r-- | usr.bin/tmux/session.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/tmux/session.c b/usr.bin/tmux/session.c index 737979c93bd..1bd428bc45d 100644 --- a/usr.bin/tmux/session.c +++ b/usr.bin/tmux/session.c @@ -1,4 +1,4 @@ -/* $OpenBSD: session.c,v 1.64 2016/10/11 13:21:59 nicm Exp $ */ +/* $OpenBSD: session.c,v 1.65 2016/10/13 21:37:03 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -359,9 +359,6 @@ session_new(struct session *s, const char *name, int argc, char **argv, notify_window_linked(s, w); environ_free(env); - if (options_get_number(s->options, "set-remain-on-exit")) - options_set_number(w->options, "remain-on-exit", 1); - session_group_synchronize_from(s); return (wl); } |