From 9f75635596d0a01282156eb9e17fde6f4205c05c Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 3 May 2019 20:44:24 +0000 Subject: Allow panes to be empty (no command), output can be piped to them with split-window or display-message -I. --- server-client.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'server-client.c') diff --git a/server-client.c b/server-client.c index 78e12b19..13a589ef 100644 --- a/server-client.c +++ b/server-client.c @@ -1671,8 +1671,7 @@ server_client_dispatch(struct imsg *imsg, void *arg) evbuffer_add(c->stdin_data, stdindata.data, stdindata.size); } - c->stdin_callback(c, c->stdin_closed, - c->stdin_callback_data); + c->stdin_callback(c, c->stdin_closed, c->stdin_callback_data); break; case MSG_RESIZE: if (datalen != 0) -- cgit