diff options
| author | 2017-07-12 09:24:17 +0000 | |
|---|---|---|
| committer | 2017-07-12 09:24:17 +0000 | |
| commit | c37a9299c66978154a263db533da8c78b8ca496e (patch) | |
| tree | 665ca843933cf403a521f6c866344529236916d7 /usr.bin/tmux/window.c | |
| parent | Make shell_command a global like other stuff rather than making it an (diff) | |
| download | wireguard-openbsd-c37a9299c66978154a263db533da8c78b8ca496e.tar.xz wireguard-openbsd-c37a9299c66978154a263db533da8c78b8ca496e.zip | |
Move signal code into proc.c.
Diffstat (limited to 'usr.bin/tmux/window.c')
| -rw-r--r-- | usr.bin/tmux/window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/window.c b/usr.bin/tmux/window.c index f2f2d139ca3..083aaca03bb 100644 --- a/usr.bin/tmux/window.c +++ b/usr.bin/tmux/window.c @@ -1,4 +1,4 @@ -/* $OpenBSD: window.c,v 1.201 2017/07/03 12:38:50 nicm Exp $ */ +/* $OpenBSD: window.c,v 1.202 2017/07/12 09:24:17 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -943,7 +943,7 @@ window_pane_spawn(struct window_pane *wp, int argc, char **argv, environ_set(env, "TMUX_PANE", "%%%u", wp->id); environ_push(env); - clear_signals(1); + proc_clear_signals(server_proc); log_close(); setenv("SHELL", wp->shell, 1); |
