diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-10-12 09:09:36 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-10-12 09:09:36 +0000 |
commit | 2fdbe83ee7fa5479bde5f49e2fc2868a96cdea95 (patch) | |
tree | 4e8e4abe70bb4c5a01de73f36af1fab5fb6fdffc /usr.bin/tmux/tmux.h | |
parent | ea5ba3d6e827bef2f8fd9d2153604c8aecc0293c (diff) |
Cleanup: use two functions for region setting, one for absolute and one inside
pane.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 8ee656f31a1..14d1786f67c 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.131 2009/10/11 10:04:27 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.132 2009/10/12 09:09:35 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1247,7 +1247,8 @@ void tty_raw(struct tty *, const char *); 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(struct tty *, u_int, u_int, u_int); +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_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); |