Remove the set-remain-on-exit option, it was always a hack and can now

be done with hooks instead.
This commit is contained in:
nicm
2016-10-13 21:37:03 +00:00
parent 4179b42424
commit 7a1a01feef
3 changed files with 0 additions and 22 deletions

View File

@ -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);
}