print warnings

This commit is contained in:
rsc 2006-02-04 20:26:35 +00:00
parent c48193be0d
commit eb9be70308
13 changed files with 31 additions and 31 deletions

View file

@ -108,8 +108,8 @@ void text(int t, char *p1) /* convert text string p1 of type t */
rclass[yyval] = nclass;
}
dprintf(".\t%dtext: S%d <- %s; b=%g,h=%g,lf=%c,rf=%c,ps=%d\n",
t, yyval, p, ebase[yyval], eht[yyval], lfont[yyval], rfont[yyval], ps);
printf(".ds %d \"%s\n", yyval, p);
t, (int)yyval, p, ebase[yyval], eht[yyval], lfont[yyval], rfont[yyval], ps);
printf(".ds %d \"%s\n", (int)yyval, p);
}
int isalpharune(int c)