From: downsj Date: Thu, 6 Feb 1997 00:14:41 +0000 (+0000) Subject: Use the font ROM size, instead of hard coding one. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=a704af32ab9d39a19ef121db8bd888b05df74152;p=openbsd Use the font ROM size, instead of hard coding one. --- diff --git a/sys/arch/hp300/dev/itevar.h b/sys/arch/hp300/dev/itevar.h index 7a3c265e33b..b42ba47ebfe 100644 --- a/sys/arch/hp300/dev/itevar.h +++ b/sys/arch/hp300/dev/itevar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: itevar.h,v 1.7 1997/02/05 14:22:18 downsj Exp $ */ +/* $OpenBSD: itevar.h,v 1.8 1997/02/06 00:14:41 downsj Exp $ */ /* $NetBSD: itevar.h,v 1.13 1997/01/30 09:18:57 thorpej Exp $ */ /* @@ -190,7 +190,7 @@ struct ite_softc { #define TABSIZE 8 #define TABEND(ip) ((ip)->tty ? ((ip)->tty->t_winsize.ws_col - TABSIZE) \ - : (80 - TABSIZE)) + : ((ip)->cols - TABSIZE)) #ifdef _KERNEL extern struct ite_data ite_cn; /* ite_data for console device */