diff options
author | 2019-05-03 20:44:24 +0000 | |
---|---|---|
committer | 2019-05-03 20:44:24 +0000 | |
commit | aab3c1a6d3e154659f9c90ea28be7d7e459bf83b (patch) | |
tree | 8219414547e526279be9a3931af65e588de387fe /usr.bin/tmux/server-client.c | |
parent | Bring v6_config() into the modern age. Remember (diff) | |
download | wireguard-openbsd-aab3c1a6d3e154659f9c90ea28be7d7e459bf83b.tar.xz wireguard-openbsd-aab3c1a6d3e154659f9c90ea28be7d7e459bf83b.zip |
Allow panes to be empty (no command), output can be piped to them with
split-window or display-message -I.
Diffstat (limited to 'usr.bin/tmux/server-client.c')
-rw-r--r-- | usr.bin/tmux/server-client.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/tmux/server-client.c b/usr.bin/tmux/server-client.c index 87ae28da0dc..23231eb6e69 100644 --- a/usr.bin/tmux/server-client.c +++ b/usr.bin/tmux/server-client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server-client.c,v 1.278 2019/05/03 18:42:40 nicm Exp $ */ +/* $OpenBSD: server-client.c,v 1.279 2019/05/03 20:44:24 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -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) |