From e6ed1cc44f2cba841434781dc42384e48e251cc6 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 12 Feb 2009 00:18:05 +0000 Subject: Never draw last character: stops stray scrolling sometimes should status line be disabled. --- tty-term.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tty-term.c') diff --git a/tty-term.c b/tty-term.c index f273e03e..ea970f47 100644 --- a/tty-term.c +++ b/tty-term.c @@ -1,4 +1,4 @@ -/* $Id: tty-term.c,v 1.13 2009-02-11 23:16:44 nicm Exp $ */ +/* $Id: tty-term.c,v 1.14 2009-02-12 00:18:05 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott @@ -218,6 +218,9 @@ tty_term_find(char *name, int fd, char **cause) for (i = 0; i < NTTYCODE; i++) { ent = &tty_term_codes[i]; +// if (ent->code == TTYC_CSR)/*XXX*/ +// continue; + code = &term->codes[ent->code]; code->type = TTYCODE_NONE; switch (ent->type) { -- cgit