From 9d2697f78b0e61e392eeaa0cc861924a72283ae9 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 12 Feb 2009 00:19:31 +0000 Subject: [PATCH] Whoops. Build testing is a good idea... --- tty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tty.c b/tty.c index 986bef3e..38f9a531 100644 --- a/tty.c +++ b/tty.c @@ -1,4 +1,4 @@ -/* $Id: tty.c,v 1.73 2009-02-12 00:18:05 nicm Exp $ */ +/* $Id: tty.c,v 1.74 2009-02-12 00:19:31 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -736,7 +736,7 @@ tty_cell(struct tty *tty, const struct grid_cell *gc) u_char out[4]; /* Skip last character if terminal is stupid. */ - if (c->tty.term->flags & TERM_EARLYWRAP && + if (tty->term->flags & TERM_EARLYWRAP && tty->cy == tty->sy - 1 && tty->cx == tty->sx - 1) return;