aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-10-12 09:09:35 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-10-12 09:09:35 +0000
commitf05b32f7adc7de4dac3afa59ce91986202f17769 (patch)
treef2d2102cf9a1a64ed6618acef3136b7c6370cd21 /tmux.h
parent0a2a3544993a569e277f893ddac610313a42bfde (diff)
downloadrtmux-f05b32f7adc7de4dac3afa59ce91986202f17769.tar.gz
rtmux-f05b32f7adc7de4dac3afa59ce91986202f17769.tar.bz2
rtmux-f05b32f7adc7de4dac3afa59ce91986202f17769.zip
Cleanup: use two functions for region setting, one for absolute and one inside
pane.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 9525070b..179c030a 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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);