118740Sedward /*
2*62477Sbostic * Copyright (c) 1983, 1993
3*62477Sbostic * The Regents of the University of California. All rights reserved.
433514Sbostic *
542954Sbostic * This code is derived from software contributed to Berkeley by
642954Sbostic * Edward Wang at The University of California, Berkeley.
742954Sbostic *
842835Sbostic * %sccs.include.redist.c%
918740Sedward */
1018740Sedward
1133514Sbostic #ifndef lint
12*62477Sbostic static char sccsid[] = "@(#)wwclreos.c 8.1 (Berkeley) 06/06/93";
1333514Sbostic #endif /* not lint */
1433514Sbostic
1514431Sedward #include "ww.h"
1631138Sedward #include "tt.h"
1714431Sedward
wwclreos(w,row,col)1814988Sedward wwclreos(w, row, col)
1914431Sedward register struct ww *w;
2014431Sedward {
2114459Sedward register i;
2214459Sedward
2335330Sedward wwclreol(w, row, col);
2414988Sedward for (i = row + 1; i < w->ww_b.b; i++)
2535330Sedward wwclreol(w, i, w->ww_b.l);
2635330Sedward /* XXX */
2735330Sedward if (!w->ww_noupdate)
2835330Sedward wwupdate1(w->ww_i.t, w->ww_i.b);
2914431Sedward }
30