From 762459954f1b8f00f93780212053288d6096a611 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 12 Oct 2009 09:29:58 +0000 Subject: Similarly add a tty_cursor_pane function to tidy up most of the calls. --- tmux.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 0b1ba198..93e178e1 100644 --- a/tmux.h +++ b/tmux.h @@ -1249,7 +1249,8 @@ 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(struct tty *, u_int, u_int); -void tty_cursor(struct tty *, u_int, u_int, u_int, u_int); +void tty_cursor_pane(struct tty *, const struct tty_ctx *, u_int, u_int); +void tty_cursor(struct tty *, u_int, u_int); void tty_putcode(struct tty *, enum tty_code_code); void tty_putcode1(struct tty *, enum tty_code_code, int); void tty_putcode2(struct tty *, enum tty_code_code, int, int); -- cgit