summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicm <nicm>2016-11-15 14:08:27 +0000
committernicm <nicm>2016-11-15 14:08:27 +0000
commitd81a5c630f53e2513feb29815c03f4c90435e450 (patch)
tree9a1fe59af8d71df0fa9cb341f7ac4e658f839c51
parent0ace779cde0bc6c68a2cbc66986162e7383f622c (diff)
And of course I just find a bug, disable previous for now.
-rw-r--r--tty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tty.c b/tty.c
index fb7b6f8c..a2a3ec42 100644
--- a/tty.c
+++ b/tty.c
@@ -73,7 +73,7 @@ static void tty_default_attributes(struct tty *, const struct window_pane *,
#define tty_use_acs(tty) \
(tty_term_has((tty)->term, TTYC_ACSC) && !((tty)->flags & TTY_UTF8))
#define tty_use_margin(tty) \
- ((tty)->term_type == TTY_VT420)
+ (0 && (tty)->term_type == TTY_VT420)
#define tty_pane_full_width(tty, ctx) \
((ctx)->xoff == 0 && screen_size_x((ctx)->wp->screen) >= (tty)->sx)