update to 1.01
[nvi.git] / vi / v_redraw.c
blobdbfabaf8ae4f8f9239d5ffcf8708ccaca07afd14
1 /*-
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
5 * %sccs.include.redist.c%
6 */
8 #ifndef lint
9 static char sccsid[] = "$Id: v_redraw.c,v 8.2 1993/08/25 16:49:53 bostic Exp $ (Berkeley) $Date: 1993/08/25 16:49:53 $";
10 #endif /* not lint */
12 #include <sys/types.h>
14 #include "vi.h"
15 #include "vcmd.h"
18 * v_redraw --
19 * Redraw the screen.
21 int
22 v_redraw(sp, ep, vp, fm, tm, rp)
23 SCR *sp;
24 EXF *ep;
25 VICMDARG *vp;
26 MARK *fm, *tm, *rp;
28 F_SET(sp, S_REFRESH);
29 return (0);