Make tbl compile silently.

This commit is contained in:
wkj 2004-05-17 02:23:43 +00:00
parent 1f72bc47fe
commit 8a3cbc1579
19 changed files with 321 additions and 328 deletions

View file

@ -59,9 +59,9 @@ void
tohcol(int ic)
{
if (ic == 0)
fprintf(tabout, "\\h'|0'");
Bprint(&tabout, "\\h'|0'");
else
fprintf(tabout, "\\h'(|\\n(%2su+|\\n(%2su)/2u'", reg(ic, CLEFT),
Bprint(&tabout, "\\h'(|\\n(%2su+|\\n(%2su)/2u'", reg(ic, CLEFT),
reg(ic - 1, CRIGHT));
}
@ -119,7 +119,7 @@ thish(int i, int c)
return(1);
if (vspen(s))
return(1);
if ((t = barent( s)))
if (t = barent( s))
return(t);
return(0);
}