summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2016-11-15 15:17:29 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2016-11-15 15:17:29 +0000
commit10154ce9b23326a6d06883599f792749427a990f (patch)
tree280d3271f5913ed5ef5d73fe052b67a7ec81ba81 /usr.bin/tmux/tmux.h
parent46b0eb92e584610707ebfc781a1ff640d177e685 (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.h6
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);