From 9a53e128e82783ea59ef6d1323ae061f893b30e7 Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 6 Feb 2010 17:15:33 +0000 Subject: 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. --- usr.bin/tmux/window.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'usr.bin/tmux/window.c') 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 @@ -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); -- cgit v1.2.3-59-g8ed1b