aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-10-15 01:26:50 +0000
committerTiago Cunha <tcunha@gmx.com>2009-10-15 01:26:50 +0000
commit9b771a96f0a6fb7aeeef565e1c9499a2c6a95f07 (patch)
tree86f802549862d8d3ad29c8623f34781b7af8b0f3 /tmux.h
parentf8f2421ac36dbcb8facdb30b25b837d81c6725ef (diff)
downloadrtmux-9b771a96f0a6fb7aeeef565e1c9499a2c6a95f07.tar.gz
rtmux-9b771a96f0a6fb7aeeef565e1c9499a2c6a95f07.tar.bz2
rtmux-9b771a96f0a6fb7aeeef565e1c9499a2c6a95f07.zip
Sync OpenBSD patchset 391:
Cleanup: use two functions for region setting, one for absolute and one inside pane.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index dbd84849..696b6b43 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.469 2009-10-12 00:35:08 tcunha Exp $ */
+/* $Id: tmux.h,v 1.470 2009-10-15 01:26:50 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1245,7 +1245,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);