diff options
author | 2016-11-15 15:17:28 +0000 | |
---|---|---|
committer | 2016-11-15 15:17:28 +0000 | |
commit | 4937b273ae76a33db27e8f099b75f5359c0c5f89 (patch) | |
tree | 609050faba520ef35ffa4161ba42eff1774d4935 /usr.bin/tmux/tmux.h | |
parent | checkfs: ignore nonexistent files and extend comment. There's actually no need (diff) | |
download | wireguard-openbsd-4937b273ae76a33db27e8f099b75f5359c0c5f89.tar.xz wireguard-openbsd-4937b273ae76a33db27e8f099b75f5359c0c5f89.zip |
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); |