diff options
author | 2010-02-06 17:15:33 +0000 | |
---|---|---|
committer | 2010-02-06 17:15:33 +0000 | |
commit | 9a53e128e82783ea59ef6d1323ae061f893b30e7 (patch) | |
tree | 73d3f8459a72afb2915c00727c817b42d2bf3e7c /usr.bin/tmux/window.c | |
parent | when receiving the first message of an rsn group key handshake (diff) | |
download | wireguard-openbsd-9a53e128e82783ea59ef6d1323ae061f893b30e7.tar.xz wireguard-openbsd-9a53e128e82783ea59ef6d1323ae061f893b30e7.zip |
Instead of bailing out on the first configuration file error, carry on,
collecting all the errors, then start with the active window in more mode
displaying them.
Diffstat (limited to '')
-rw-r--r-- | usr.bin/tmux/window.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/tmux/window.c b/usr.bin/tmux/window.c index 2b87d95ea1c..128ff27c1a9 100644 --- a/usr.bin/tmux/window.c +++ b/usr.bin/tmux/window.c @@ -1,4 +1,4 @@ -/* $OpenBSD: window.c,v 1.42 2009/12/03 22:50:10 nicm Exp $ */ +/* $OpenBSD: window.c,v 1.43 2010/02/06 17:15:33 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -657,9 +657,6 @@ window_pane_parse(struct window_pane *wp) char *data; size_t new_size; - if (wp->mode != NULL) - return; - new_size = EVBUFFER_LENGTH(wp->event->input) - wp->pipe_off; if (wp->pipe_fd != -1 && new_size > 0) { data = EVBUFFER_DATA(wp->event->input); |