From a32d095c97177eaa7ba7d2a3c723df1b878e9922 Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Mon, 8 Feb 2010 18:10:07 +0000 Subject: Sync OpenBSD patchset 635: 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. --- window.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'window.c') diff --git a/window.c b/window.c index 10f9f167..c48dc798 100644 --- a/window.c +++ b/window.c @@ -1,4 +1,4 @@ -/* $Id: window.c,v 1.125 2009-12-04 22:14:47 tcunha Exp $ */ +/* $Id: window.c,v 1.126 2010-02-08 18:10:07 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -664,9 +664,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