diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2016-11-15 15:17:29 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2016-11-15 15:17:29 +0000 |
commit | 10154ce9b23326a6d06883599f792749427a990f (patch) | |
tree | 280d3271f5913ed5ef5d73fe052b67a7ec81ba81 /usr.bin/tmux/tmux.h | |
parent | 46b0eb92e584610707ebfc781a1ff640d177e685 (diff) |
Turn on margins, with a couple of fixes (only limit to the pane for line
feeds, and do not move cursor to end for full width panes).
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 54689548c25..9dd63f50c32 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.676 2016/11/15 14:02:32 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.677 2016/11/15 15:17:28 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1664,8 +1664,8 @@ void tty_raw(struct tty *, const char *); void tty_attributes(struct tty *, const struct grid_cell *, const struct window_pane *); void tty_reset(struct tty *); -void tty_region(struct tty *, u_int, u_int); -void tty_margin(struct tty *, u_int, u_int); +void tty_region_off(struct tty *); +void tty_margin_off(struct tty *); 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); |