xref: /csrg-svn/old/lib2648/move.c (revision 11482)
1*11482Sralph /*	move.c	4.1	83/03/09	*/
2*11482Sralph /*
3*11482Sralph  * move to (x, y).  Both the _pen and cursor are supposed to be moved.
4*11482Sralph  * We really just remember it for later, in case we move again.
5*11482Sralph  */
6*11482Sralph 
7*11482Sralph #include "2648.h"
8*11482Sralph 
9*11482Sralph move(x, y)
10*11482Sralph {
11*11482Sralph #ifdef TRACE
12*11482Sralph 	if (trace)
13*11482Sralph 		fprintf(trace, "\tmove(%d, %d), ", x, y);
14*11482Sralph #endif
15*11482Sralph 	_supx = x;
16*11482Sralph 	_supy = y;
17*11482Sralph }
18