diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-02-11 19:06:58 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-02-11 19:06:58 +0000 |
commit | d5eaf3a9f6ab9299f76d65e77f11e08f11d9e150 (patch) | |
tree | 1784e976a5550ba7435bf40d14a2bc7addc3847f /tty-term.c | |
parent | 6c76aaca92e11e5f4d1a593081315b9b5e1da2e4 (diff) | |
download | rtmux-d5eaf3a9f6ab9299f76d65e77f11e08f11d9e150.tar.gz rtmux-d5eaf3a9f6ab9299f76d65e77f11e08f11d9e150.tar.bz2 rtmux-d5eaf3a9f6ab9299f76d65e77f11e08f11d9e150.zip |
Emulate CSR with existing screen data on old/stupid terminals which don't support it.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1,4 +1,4 @@ -/* $Id: tty-term.c,v 1.11 2009-02-11 18:44:08 nicm Exp $ */ +/* $Id: tty-term.c,v 1.12 2009-02-11 19:06:58 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -240,10 +240,6 @@ tty_term_find(char *name, int fd, char **cause) xasprintf(cause, "terminal does not support ri"); goto error; } - if (!tty_term_has(term, TTYC_CSR)) { - xasprintf(cause, "terminal does not support csr"); - goto error; - } if (!tty_term_has(term, TTYC_CUP)) { xasprintf(cause, "terminal does not support cup"); goto error; |