From 8aba77b7be489a93dc843d7ef4378bd73b5385b1 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott 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. --- window.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'window.c') diff --git a/window.c b/window.c index 5494142e..a990fa57 100644 --- a/window.c +++ b/window.c @@ -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