diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-10-12 09:29:58 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-10-12 09:29:58 +0000 |
commit | 762459954f1b8f00f93780212053288d6096a611 (patch) | |
tree | 58673c22a78d96ac53bf5adde0116f4677ac5766 /tmux.h | |
parent | 972a6f565660a7ca5c0307c1085825a254fba20e (diff) | |
download | rtmux-762459954f1b8f00f93780212053288d6096a611.tar.gz rtmux-762459954f1b8f00f93780212053288d6096a611.tar.bz2 rtmux-762459954f1b8f00f93780212053288d6096a611.zip |
Similarly add a tty_cursor_pane function to tidy up most of the calls.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |