From d5eaf3a9f6ab9299f76d65e77f11e08f11d9e150 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 11 Feb 2009 19:06:58 +0000 Subject: Emulate CSR with existing screen data on old/stupid terminals which don't support it. --- tty-term.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'tty-term.c') diff --git a/tty-term.c b/tty-term.c index 14c6b6bc..4e3069b8 100644 --- a/tty-term.c +++ b/tty-term.c @@ -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 @@ -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; -- cgit