r=ftang; fixed off by one error that made return value oPrev inconsistent

git-svn-id: svn://10.0.0.236/trunk@51210 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kipp%netscape.com 1999-10-19 23:06:27 +00:00
parent 4befc8fe5e
commit 3096ad4a52

View File

@ -480,7 +480,7 @@ NS_IMETHODIMP nsJISx4501LineBreaker::Prev(
}
if(GetPair(c1, c2)) {
*oPrev = cur - 1;
*oPrev = cur;
*oNeedMoreText = PR_FALSE;
return NS_OK;
}