xref: /csrg-svn/old/lib2648/movecurs.c (revision 11483)
1*11483Sralph /*	movecurs.c	4.1	83/03/09	*/
2*11483Sralph 
3*11483Sralph #include "2648.h"
4*11483Sralph 
5*11483Sralph movecurs(x, y)
6*11483Sralph {
7*11483Sralph 	char mes[20];
8*11483Sralph 
9*11483Sralph 	if (x==_curx && y==_cury)
10*11483Sralph 		return;
11*11483Sralph 	sprintf(mes, "%d,%do", x, y);
12*11483Sralph 	escseq(ESCD);
13*11483Sralph 	outstr(mes);
14*11483Sralph 	escseq(NONE);
15*11483Sralph 	_curx = x;
16*11483Sralph 	_cury = y;
17*11483Sralph }
18