=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.203 retrieving revision 1.204 diff -u -r1.203 -r1.204 --- src/usr.bin/tmux/tmux.h 2010/02/06 17:15:33 1.203 +++ src/usr.bin/tmux/tmux.h 2010/02/06 17:35:01 1.204 @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.203 2010/02/06 17:15:33 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.204 2010/02/06 17:35:01 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -469,6 +469,7 @@ MODEKEYCOPY_PREVIOUSPAGE, MODEKEYCOPY_PREVIOUSSPACE, MODEKEYCOPY_PREVIOUSWORD, + MODEKEYCOPY_RECTANGLETOGGLE, MODEKEYCOPY_RIGHT, MODEKEYCOPY_SCROLLDOWN, MODEKEYCOPY_SCROLLUP, @@ -674,6 +675,7 @@ /* Screen selection. */ struct screen_sel { int flag; + int rectflag; u_int sx; u_int sy; @@ -1774,8 +1776,8 @@ void screen_reset_tabs(struct screen *); void screen_set_title(struct screen *, const char *); void screen_resize(struct screen *, u_int, u_int); -void screen_set_selection( - struct screen *, u_int, u_int, u_int, u_int, struct grid_cell *); +void screen_set_selection(struct screen *, + u_int, u_int, u_int, u_int, u_int, struct grid_cell *); void screen_clear_selection(struct screen *); int screen_check_selection(struct screen *, u_int, u_int);