diff options
author | Thomas Adam <thomas@xteddy.org> | 2020-05-26 14:02:15 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2020-05-26 14:02:15 +0100 |
commit | a4cb700269e033b5ad429275d7c61d3c3c2f1af3 (patch) | |
tree | f469586f1cffa3569385d88efa4305c2c83c18ef /tmux.h | |
parent | bc2e0cf7ff51c2ab13c7dcc792d25e11ba7a3ef4 (diff) | |
parent | 392b381d1cec6d63c4baaa709243f760ff6c3403 (diff) | |
download | rtmux-a4cb700269e033b5ad429275d7c61d3c3c2f1af3.tar.gz rtmux-a4cb700269e033b5ad429275d7c61d3c3c2f1af3.tar.bz2 rtmux-a4cb700269e033b5ad429275d7c61d3c3c2f1af3.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -500,6 +500,7 @@ enum msgtype { MSG_IDENTIFY_CLIENTPID, MSG_IDENTIFY_CWD, MSG_IDENTIFY_FEATURES, + MSG_IDENTIFY_STDOUT, MSG_COMMAND = 200, MSG_DETACH, @@ -969,6 +970,7 @@ struct window_pane { int fd; struct bufferevent *event; + struct window_pane_offset offset; size_t base_offset; @@ -1583,6 +1585,7 @@ struct client { pid_t pid; int fd; + int out_fd; struct event event; int retval; |