diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-11-13 16:57:21 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-11-13 16:57:21 +0000 |
commit | 2bd39071d3e5add8e734d31566574f7dbf54ee4b (patch) | |
tree | 0bd5153c783fdb1fb8d17649226fdd778b81a2eb /tty.c | |
parent | ac6b1a817b635689543138cbfa43cfcd1f762a53 (diff) | |
download | rtmux-2bd39071d3e5add8e734d31566574f7dbf54ee4b.tar.gz rtmux-2bd39071d3e5add8e734d31566574f7dbf54ee4b.tar.bz2 rtmux-2bd39071d3e5add8e734d31566574f7dbf54ee4b.zip |
Sync OpenBSD patchset 532:
Emulate the ri (reverse index) capability: this allows tmux to at least start
on Sun consoles (TERM=sun or sun-color), even if there appear to still be
problems on some boxes (my Blade 100 is fine but edd's Blade 1000 shows odd
screen corruption).
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tty.c,v 1.173 2009-11-10 23:27:57 tcunha Exp $ */ +/* $Id: tty.c,v 1.174 2009-11-13 16:57:21 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -716,7 +716,8 @@ tty_cmd_reverseindex(struct tty *tty, const struct tty_ctx *ctx) return; if (wp->xoff != 0 || screen_size_x(s) < tty->sx || - !tty_term_has(tty->term, TTYC_CSR)) { + !tty_term_has(tty->term, TTYC_CSR) || + !tty_term_has(tty->term, TTYC_RI)) { tty_redraw_region(tty, ctx); return; } |