Similarly add a tty_cursor_pane function to tidy up most of the calls.

This commit is contained in:
Nicholas Marriott
2009-10-12 09:29:58 +00:00
parent 972a6f5656
commit 762459954f
4 changed files with 49 additions and 37 deletions

3
tmux.h
View File

@ -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);