Fix mvcur typo bug from my previous fix

This commit is contained in:
Andrey A. Chernov 1994-09-22 03:09:04 +00:00
parent b7e9accbaa
commit 8354392e6b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2972

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);
}