Sync OpenBSD patchset 392:

_absolute is redundant, just use tty_region.
This commit is contained in:
Tiago Cunha
2009-10-15 01:28:14 +00:00
parent 9b771a96f0
commit 6369fca253
3 changed files with 9 additions and 7 deletions

4
tmux.h
View File

@ -1,4 +1,4 @@
/* $Id: tmux.h,v 1.470 2009-10-15 01:26:50 tcunha Exp $ */
/* $Id: tmux.h,v 1.471 2009-10-15 01:28:14 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -1246,7 +1246,7 @@ u_char tty_get_acs(struct tty *, u_char);
void tty_attributes(struct tty *, const struct grid_cell *);
void tty_reset(struct tty *);
void tty_region_pane(struct tty *, const struct tty_ctx *, u_int, u_int);
void tty_region_absolute(struct tty *, u_int, u_int);
void tty_region(struct tty *, u_int, u_int);
void tty_cursor(struct tty *, u_int, u_int, u_int, u_int);
void tty_putcode(struct tty *, enum tty_code_code);
void tty_putcode1(struct tty *, enum tty_code_code, int);