summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2009-11-04 22:02:39 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2009-11-04 22:02:39 +0000
commit4d0bbc1e01f1fde69f49b0be9924ff8916650505 (patch)
treeb02f1fd2c832c76847d276485b7aa1fdda4f10f5 /usr.bin/tmux/tmux.h
parent61f1e016a392ec594bd75c723836afda9e8af879 (diff)
Switch window pane pipe redirect fd over to a bufferevent.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r--usr.bin/tmux/tmux.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h
index 9ed46d25707..9761eeab479 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.161 2009/11/04 21:47:42 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.162 2009/11/04 22:02:38 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -805,8 +805,7 @@ struct window_pane {
struct input_ctx ictx;
int pipe_fd;
- struct event pipe_event;
- struct buffer *pipe_buf;
+ struct bufferevent *pipe_event;
size_t pipe_off;
struct screen *screen;