Fix mvcur typo bug from my previous fix

This commit is contained in:
ache 1994-09-22 03:09:04 +00:00
parent 6f769c973c
commit 445e6edeb6

View File

@ -79,7 +79,7 @@ __mvcur(ly, lx, y, x, in_refresh)
destline = y;
outcol = lx;
outline = ly;
if (destline != destcol || outline != outcol)
if (destline != outline || destcol != outcol)
fgoto(in_refresh);
return (OK);
}