diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-05-04 17:28:17 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-05-04 17:28:17 +0000 |
commit | 370f14b7b0df79cb0604cf8a10612fbb2d7811ef (patch) | |
tree | 338ec981508ab3c125f5284747297207dedaa600 /usr.bin/tmux/window.c | |
parent | c768edd1ac0da60c8eb8aedc8ad92d7cd05de470 (diff) |
Put this back in with the initialisation in the right order.
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 0afb75a4694..53d301b038a 100644 --- a/usr.bin/tmux/window.c +++ b/usr.bin/tmux/window.c @@ -1,4 +1,4 @@ -/* $OpenBSD: window.c,v 1.49 2010/05/04 08:48:06 nicm Exp $ */ +/* $OpenBSD: window.c,v 1.50 2010/05/04 17:28:16 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -529,7 +529,7 @@ window_pane_spawn(struct window_pane *wp, const char *cmd, const char *shell, environ_push(env); - server_signal_clear(); + clear_signals(); log_close(); if (*wp->cmd != '\0') { |