This commit was generated by cvs2svn to compensate for changes in r90019,

which included commits to RCS files with non-trunk default branches.
This commit is contained in:
Sheldon Hearn 2002-01-31 13:28:37 +00:00
commit 32c41949c6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=90020

View File

@ -743,7 +743,7 @@ vs_sm_up(sp, rp, count, scmd, smp)
if (!SMAP_CACHE(smp) && vs_line(sp, smp, NULL, NULL))
return (1);
rp->lno = smp->lno;
rp->cno = smp->c_sboff;
rp->cno = smp->c_scoff == 255 ? 0 : smp->c_sboff;
return (0);
}
@ -958,7 +958,7 @@ vs_sm_down(sp, rp, count, scmd, smp)
if (!SMAP_CACHE(smp) && vs_line(sp, smp, NULL, NULL))
return (1);
rp->lno = smp->lno;
rp->cno = smp->c_sboff;
rp->cno = smp->c_scoff == 255 ? 0 : smp->c_sboff;
return (0);
}