=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.324 retrieving revision 1.325 diff -u -r1.324 -r1.325 --- src/usr.bin/tmux/tmux.h 2012/03/17 22:56:04 1.324 +++ src/usr.bin/tmux/tmux.h 2012/03/20 11:01:00 1.325 @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.324 2012/03/17 22:56:04 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.325 2012/03/20 11:01:00 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -811,6 +811,7 @@ int flags; #define PANE_REDRAW 0x1 +#define PANE_DROP 0x2 char *cmd; char *shell; @@ -819,6 +820,10 @@ pid_t pid; char tty[TTY_NAME_MAX]; + u_int changes; + struct event changes_timer; + u_int changes_redraw; + int fd; struct bufferevent *event; @@ -1963,6 +1968,7 @@ struct window_pane *window_pane_find_by_id(u_int); struct window_pane *window_pane_create(struct window *, u_int, u_int, u_int); void window_pane_destroy(struct window_pane *); +void window_pane_timer_start(struct window_pane *); int window_pane_spawn(struct window_pane *, const char *, const char *, const char *, struct environ *, struct termios *, char **); @@ -1981,7 +1987,6 @@ char *window_pane_search( struct window_pane *, const char *, u_int *); char *window_printable_flags(struct session *, struct winlink *); - struct window_pane *window_pane_find_up(struct window_pane *); struct window_pane *window_pane_find_down(struct window_pane *); struct window_pane *window_pane_find_left(struct window_pane *);