diff options
author | nicm <nicm> | 2016-11-15 14:08:27 +0000 |
---|---|---|
committer | nicm <nicm> | 2016-11-15 14:08:27 +0000 |
commit | d81a5c630f53e2513feb29815c03f4c90435e450 (patch) | |
tree | 9a1fe59af8d71df0fa9cb341f7ac4e658f839c51 | |
parent | 0ace779cde0bc6c68a2cbc66986162e7383f622c (diff) | |
download | rtmux-d81a5c630f53e2513feb29815c03f4c90435e450.tar.gz rtmux-d81a5c630f53e2513feb29815c03f4c90435e450.tar.bz2 rtmux-d81a5c630f53e2513feb29815c03f4c90435e450.zip |
And of course I just find a bug, disable previous for now.
-rw-r--r-- | tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |