one file somehow slipped by me in the previous commit

tidy up
This commit is contained in:
Adam David 1996-07-30 15:44:30 +00:00
parent 58db4b5a8f
commit 6439f56e80
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=17341
2 changed files with 6 additions and 2 deletions

View File

@ -136,7 +136,8 @@ forward(fp, style, off, sbp)
return;
}
} else
bytes(fp, off);
if (bytes(fp, off))
return;
break;
case RLINES:
if (S_ISREG(sbp->st_mode))
@ -154,7 +155,8 @@ forward(fp, style, off, sbp)
return;
}
} else
lines(fp, off);
if (lines(fp, off))
return;
break;
}

View File

@ -113,6 +113,7 @@ bytes(fp, off)
if (len = p - sp)
WR(sp, len);
}
return 0;
}
/*
@ -195,4 +196,5 @@ lines(fp, off)
for (cnt = 0; cnt < recno; ++cnt)
WR(lines[cnt].l, lines[cnt].len);
}
return 0;
}