From 788935aae6a144972fa10842f9031274539ea15b Mon Sep 17 00:00:00 2001 From: Niklas Hallqvist Date: Fri, 23 Feb 1996 14:10:59 +0000 Subject: Minor cleanup for 8-bit cleanliness. From der Mouse, PR 1322. Eliminate the use of char variables for holding booleans. Compress struct ww somewhat. Make ww_index and related variables explicitly unsigned. --- usr.bin/window/wwclreos.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.bin/window/wwclreos.c') diff --git a/usr.bin/window/wwclreos.c b/usr.bin/window/wwclreos.c index e89c2b6ccff..5a348d5ef6c 100644 --- a/usr.bin/window/wwclreos.c +++ b/usr.bin/window/wwclreos.c @@ -1,4 +1,4 @@ -/* $NetBSD: wwclreos.c,v 1.3 1995/09/28 10:35:18 tls Exp $ */ +/* $NetBSD: wwclreos.c,v 1.4 1996/02/08 20:45:07 mycroft Exp $ */ /* * Copyright (c) 1983, 1993 @@ -40,7 +40,7 @@ #if 0 static char sccsid[] = "@(#)wwclreos.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$NetBSD: wwclreos.c,v 1.3 1995/09/28 10:35:18 tls Exp $"; +static char rcsid[] = "$NetBSD: wwclreos.c,v 1.4 1996/02/08 20:45:07 mycroft Exp $"; #endif #endif /* not lint */ @@ -56,6 +56,6 @@ register struct ww *w; for (i = row + 1; i < w->ww_b.b; i++) wwclreol(w, i, w->ww_b.l); /* XXX */ - if (!w->ww_noupdate) + if (!ISSET(w->ww_wflags, WWW_NOUPDATE)) wwupdate1(w->ww_i.t, w->ww_i.b); } -- cgit v1.2.3