X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/blobdiff_plain/5b020a1ba9e6b0c11bd29a4e41797f475798df58..419d8eabcd73b76f91ed59bb578fee0cb941f584:/usr/src/usr.bin/window/wwclreos.c diff --git a/usr/src/usr.bin/window/wwclreos.c b/usr/src/usr.bin/window/wwclreos.c index d8632a0561..6c8c0d1748 100644 --- a/usr/src/usr.bin/window/wwclreos.c +++ b/usr/src/usr.bin/window/wwclreos.c @@ -1,11 +1,29 @@ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. + * + * This code is derived from software contributed to Berkeley by + * Edward Wang at The University of California, Berkeley. + * + * %sccs.include.redist.c% + */ + #ifndef lint -static char *sccsid = "@(#)wwclreos.c 3.1 83/08/09"; -#endif +static char sccsid[] = "@(#)wwclreos.c 3.11 (Berkeley) %G%"; +#endif /* not lint */ #include "ww.h" +#include "tt.h" -wwclreos(w) +wwclreos(w, row, col) register struct ww *w; { - w = w; + register i; + + wwclreol(w, row, col); + for (i = row + 1; i < w->ww_b.b; i++) + wwclreol(w, i, w->ww_b.l); + /* XXX */ + if (!w->ww_noupdate) + wwupdate1(w->ww_i.t, w->ww_i.b); }